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