NERDTree mistakenly overwritten default <C-f> hotkey removed

This commit is contained in:
2022-08-08 23:18:53 +03:00
parent 5f4c00bf35
commit 7ce62654ea

View File

@@ -50,7 +50,6 @@ set updatetime=100
nnoremap <leader>n :NERDTreeFocus<CR>
nnoremap <C-n> :NERDTree<CR>
nnoremap <C-t> :NERDTreeToggle<CR>
nnoremap <C-f> :NERDTreeFind<CR>
highlight VertSplit cterm=none
" Exit Vim if NERDTree is the only window remaining in the only tab.
autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif