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-emacspeople) from the cursor to the beginning of the line, whichemacsdoesn’t do; that defaults to something likeM-- M-1 C-kin emacs.If you’re a
viperson, you can doset -o viand usevifunctionality. Hit Esc to go intovi-style command mode.In emacs it would be
C-u - C-kI 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-#. 😺