Alex

Results 2 comments of Alex

Stable reproducible and very annoying. It seems BufHidden autocmd is not running for open floaterm popup when tabs are switched. Adding BufLeave to autoload/floaterm/terminal.vim L20 makes auto-hiding work and the...

Something like this in `.vimrc` can be used as a workaround: ``` function! FloatermHide() if &filetype == 'floaterm' call floaterm#window#hide(bufnr('%')) endif endfunction autocmd! BufLeave * call FloatermHide() ``` It closes...