vote up 0 vote down star

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.

flag
the correct line should be nmap <silent> <leader>p :NERDTreeToggle<CR> – fcuk112 Sep 17 at 10:51

1 Answer

vote up 2 vote down check

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.

link|flag
i tried both nmap <silent> <C-D> :NERDTreeToggle<CR> and nmap <silent> <c-d> :NERDTreeToggle<CR> but when i press CTRL-D it seems to scroll down about 33 lines... – fcuk112 Sep 17 at 11:21
You need to do the nnoremap because <c-d> is scroll down by default. – Ayman Sep 17 at 11:55
i changed it to nnoremap <silent> <C-D> :NERDTreeToggle<CR> but it still seems to scroll down when i press ctrl-D? – fcuk112 Sep 17 at 13:11
:map <c-d> :echo "hello"<CR> does it print hello on <C-d>? – Maxim Kim Sep 17 at 13:18
no, it scrolls down about 33 lines as before. – fcuk112 Sep 17 at 13:26
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.