i have this line in my vimrc:
nmap p :NERDTreeToggle
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?
thanks.
i have this line in my vimrc:
nmap p :NERDTreeToggle
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?
thanks.
to remap in normal mode use
nmap <silent> <C-D> :NERDTreeToggle<CR>
nmap
means map in normal mode
imap
means map in insert mode
the nore
part in nnoremap
and its friends prevent expanding the mapping recursively. For example, i use to also hide search string so, in my vimrc I have
nnoremap <silent> <C-L> :noh<CR><C-L>
Without the nore
, the above mapping will loop.