Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

The thing I like about fish is the easy history nav. I type "git" and press Up, and I get to go through my history of anything that started with "git" very quickly. I'll often remember I typed an svn command three weeks ago, but forget the parameters, and I'll have it back within 15 seconds.

It's like magic!



This is indeed a lovely feature I couldn't live without.

In bash, you can get it by adding the following to your .inputrc (at least on mac terminal)

    "\e[B":    history-search-forward  
    "\e[A":    history-search-backward


I add these lines so the left- and right-arrows still work correctly:

    "\e[C": forward-char
    "\e[D": backward-char


in zsh you get it by adding

bindkey "^[[A" history-beginning-search-backward

bindkey "^[[B" history-beginning-search-forward


I believe in bash and zsh the default is ^R and ^S


except a huge number of terminal emulators still reserve ^S/^Q for XON/XOFF software flow-control[1].

    stty -ixon
lives in my init scripts for that reason.

[1] https://en.wikipedia.org/wiki/Software_flow_control


Works the same in zsh.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: