I am using Vim bindings in bash (set -o vi
) and I wanted to know if it is possible to use and save Vim macros on the command line. For instance, I would like to save a macro like this:
let @q = "0y$dd"
to yank and delete a line. If I save this macro in my .vimrc
file it works within the Vim editor but not on the command line.
I am using Vim bindings in bash (set -o vi
) and I wanted to know if it is possible to use and save Vim macros on the command line. For instance, I would like to save a macro like this:
let @q = "0y$dd"
to yank and delete a line. If I save this macro in my .vimrc
file it works within the Vim editor but not on the command line.
3 Answers
Reset to default 1Not possible. Bash -o vi
mode has almost nothing to do with Vim, it does not support Vim macros and/or .vimrc
.
Note that man bash
strictly speaks about "vi-mode", not "Vim-mode".
You can't expect Vim features.
A convenient workaround is to use Vim to edit your command line which works naturally when set -o vi
is set.
Go to Normal mode with Esc and press v
to edit your command line in vi (which will be an alias to Vim in any reasonably modern system).
This starts your regular Vim and will source your vimrc
with whatever commands you put in there.
After you're done editing your command, use :wq
to run it or :q!
to abort.
As to your macro, you could probably just use dd
which will delete the entire line and put the deleted text in the unnamed register.
The macro in your question differs from dd
only in that register 0 will contain the yanked text (the deleted line without a linebreak).
Try the readline bindings :
set -o vi
bind -m vi
bind $'"@q":"\e0y$dd"'
escape
key and then the letterv
while in command line. – Jetchisel Commented Apr 1 at 10:52