最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

bash - Using Vim macros on the command line - Stack Overflow

programmeradmin2浏览0评论

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.

Share Improve this question edited Apr 1 at 11:52 romainl 197k21 gold badges297 silver badges334 bronze badges asked Apr 1 at 10:09 armandoarmando 1,4882 gold badges16 silver badges30 bronze badges 1
  • 1 Fwiw, Try pressing the escape key and then the letter v while in command line. – Jetchisel Commented Apr 1 at 10:52
Add a comment  | 

3 Answers 3

Reset to default 1

Not 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"'
发布评论

评论列表(0)

  1. 暂无评论