If you’re looking for a full list of these kind of navigation shortcuts, they all come from readline so read the man page for that. Or just look up the basic navigation of emacs which is what readline is mimicking.
A neat thing is that a lot of command line programs use readline. So learning and configuring it will also be useful in for example the Python REPL and calc.
Here are some neat configuration options you can put in ~/.inputrc
set completion-ignore-case on
set show-all-if-ambiguous on
set completion-prefix-display-length 9
set blink-matching-paren on
set mark-symlinked-directories on
And if you are a sensible person who is used to vim
If you’re looking for a full list of these kind of navigation shortcuts, they all come from
readline
so read theman
page for that. Or just look up the basic navigation ofemacs
which is whatreadline
is mimicking.A neat thing is that a lot of command line programs use readline. So learning and configuring it will also be useful in for example the Python REPL and calc.
Here are some neat configuration options you can put in
~/.inputrc
set completion-ignore-case on set show-all-if-ambiguous on set completion-prefix-display-length 9 set blink-matching-paren on set mark-symlinked-directories on
And if you are a sensible person who is used to vim
set editing-mode vi set show-mode-in-prompt on