automatically close a terminal buffer if it has exited/returned

This commit is contained in:
Galen Rowell 2021-07-20 20:18:10 +10:00
parent 15f20e8437
commit f35aa3c604
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ M.hideStuff = function()
vim.api.nvim_exec(
[[
au TermOpen term://* setlocal nonumber laststatus=0
au TermClose term://* bd!
au BufEnter,BufWinEnter,WinEnter,CmdwinEnter * if bufname('%') == "NvimTree" | set laststatus=0 | else | set laststatus=2 | endif
]],
false