mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
feat(terminal): close shell terminals automatically
When starting a terminal buffer that uses the default value of &shell (e.g. when using `:terminal` or `termopen([&shell])`), automatically close the buffer if the shell exits without an error.
This commit is contained in:
parent
3d948a4dc4
commit
0c89854da1
@ -8502,6 +8502,16 @@ static void f_termopen(typval_T *argvars, typval_T *rettv, EvalFuncData fptr)
|
||||
|
||||
channel_terminal_open(curbuf, chan);
|
||||
channel_create_event(chan, NULL);
|
||||
|
||||
do_cmdline_cmd("augroup nvim_terminal_close");
|
||||
do_cmdline_cmd("autocmd! TermClose <buffer> "
|
||||
" if !v:event.status |"
|
||||
" let info = nvim_get_chan_info(&channel) |"
|
||||
" if info.argv ==# [&shell] |"
|
||||
" exec 'bdelete! ' .. expand('<abuf>') |"
|
||||
" endif |"
|
||||
" endif");
|
||||
do_cmdline_cmd("augroup END");
|
||||
}
|
||||
|
||||
/// "timer_info([timer])" function
|
||||
|
Loading…
Reference in New Issue
Block a user