Neovim sigh

This commit is contained in:
Ben Jackson 2020-07-11 17:05:39 +01:00
commit ebc0b3607a

View file

@ -5,7 +5,13 @@ function! s:CustomiseUI()
let wins = g:vimspector_session_windows
" Close the Variables window
call win_execute( wins.variables, 'q' )
if has( 'nvim' )
" No win_execute in neovim
call win_gotoid( wins.variables )
quit
else
call win_execute( wins.variables, 'q' )
endif
" Put the stack trace at the top of the "left bar" (rotate)
call win_gotoid( wins.stack_trace )