在插入模式下调用 NERDCommenter?
在我的 .vimrc
中,我有以下映射,我用它来使用优秀的 NERDCommenter 来切换评论 插件:
vmap <D-/> ,c<space>gv
map <D-/> ,c<space>
非常适合这个 TextMate 难民。
但是,我希望它也能在插入模式下工作。大致:
- 使用相同的组合(命令-/)
- 切换到正常模式
- 执行切换
- 奖励积分用于保存光标位置,我想。
我的 .vimrc
技能并没有扩展到此。有什么帮助吗?
In my .vimrc
, I have the following mapping which I use to toggle comments using the excellent NERDCommenter plugin:
vmap <D-/> ,c<space>gv
map <D-/> ,c<space>
Works great for this TextMate refugee.
However, I'd like it to work in Insert mode as well. Roughly:
- Use the same combo (command-/)
- Switch to normal mode
- Execute the toggle
- Bonus points for saving the cursor position, I suppose.
My .vimrc
skills don't extend to this. Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
imap
在插入模式下映射命令。我认为以下应该有效。Use
imap
to map commands in insert mode. I think the following should work.