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.
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-#
. 😺