blob: 150e9804a52ea80bee84efc7f471843784dc0f2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require("utility.autocmd")
-- Exit Vim if a terminal is the only window remaining in the only tab.
--[[
autocmd(
"BufEnter",
"*",
"if tabpagenr('$') == 1 && winnr('$') == 1 && g:is_term_open == 1 | quit | endif"
)
]]
|