The default ones are the same as in emacs, so if you know emacs, you probably know them too, but Control-U kills (roughly equivalent to “cut” for non-emacs people) from the cursor to the beginning of the line, which emacs doesn’t do; that defaults to something like M-- M-1 C-k in emacs.
If you’re a vi person, you can do set -o vi and use vi functionality. Hit Esc to go into vi-style command mode.
I feel like I forget those that I just don’t use often enough, and when I would need them I default to what I know (which is always a slower way than knowing a shortcut) in a “hurry”.
Guess I should just print them and tape the paper next to my monitor.
While you are at it, look up readline shortcuts.
The default ones are the same as in
emacs
, so if you knowemacs
, you probably know them too, but Control-U kills (roughly equivalent to “cut” for non-emacs
people) from the cursor to the beginning of the line, whichemacs
doesn’t do; that defaults to something likeM-- M-1 C-k
in emacs.If you’re a
vi
person, you can doset -o vi
and usevi
functionality. Hit Esc to go intovi
-style command mode.In emacs it would be
C-u - C-k
I think.That’d be equivalent. Emacs has a number of way to input arguments to functions.
True, I forgot that it’s possible to pass argument with
M-#
. 😺I feel like I forget those that I just don’t use often enough, and when I would need them I default to what I know (which is always a slower way than knowing a shortcut) in a “hurry”.
Guess I should just print them and tape the paper next to my monitor.