mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
2 lines
195 B
VimL
2 lines
195 B
VimL
" 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
|