NERDTree 切换和键盘映射
我的 .vimrc 中有这一行:
nmap <silent> <Leader>p :NERDTreeToggle<CR>
那么切换 NERDTree 的热键是什么?
如何将其重新映射为 CTRL-D?
nmap
、map
、nnoremap
、inoremap
等之间有什么区别?
I have this line in my .vimrc:
nmap <silent> <Leader>p :NERDTreeToggle<CR>
So what is the hotkey for toggling NERDTree?
How do I remap it to CTRL-D?
what is the difference between nmap
, map
, nnoremap
, inoremap
, etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在正常模式下重新映射,请使用
nmap
表示在正常模式下映射imap
表示在插入模式下映射,nnoremap
中的nore
部分及其朋友阻止递归扩展映射。例如,我还用来隐藏搜索字符串,因此,在我的 vimrc 中,如果没有
nore
,上面的映射将循环。to remap in normal mode use
nmap
means map in normal modeimap
means map in insert modethe
nore
part innnoremap
and its friends prevent expanding the mapping recursively. For example, i use to also hide search string so, in my vimrc I haveWithout the
nore
, the above mapping will loop.@fcuk122 - 试试这个 nmap :NERDTreeToggle
我认为 CTRL + D 已在系统中使用,请尝试 CRTL + T 或任何其他方便的键,但终端或 VIM 未使用它。
可能适合你。
@fcuk122 - try this nmap :NERDTreeToggle
I think CTRL + D is already used in system try CRTL + T or any other convenient key and which not used by terminal or VIM.
may work for you.