vim NERDTree键映射

时间:2015-12-26 19:51:50

标签: vim nerdtree

" ==== NERD tree
" Cmd-Shift-N for nerd tree
nmap <D-N> :NERDTreeToggle<CR>
" Open the project tree and expose current file in the nerdtree with Ctrl-\
nnoremap <silent> <C-\> :NERDTreeFind<CR>:vertical res 30<CR>

我可能不明白键映射意味着:

`nmap <D-N>` maps `D` - Mac Command key ? 

1 个答案:

答案 0 :(得分:1)

<D-…>是Mac OS X上的Command键。该键只能通过MacVim GUI查看。

  • 该映射在MacVim GUI之外什么都不做,
  • 从别人的vimrc复制设置不是一个好主意。

请参阅:help key-notation