You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Would like to automatically have the Vista window visible when starting to edit a file with vim-lsp. When using
let g:vista_default_executive = 'vim_lsp'
autocmd VimEnter * Vista
nothing happens.
Describe the solution you'd like
Would like the above config to work.
Describe alternatives you've considered
Maybe it needs to be triggered when vim_lsp finishes loading symbols, but I don't know how to do this.
Additional context
The text was updated successfully, but these errors were encountered:
let g:vista_default_executive = 'vim_lsp'
function! OpenVista()
if !exists("g:opened_vista")
Vista
if vista#sidebar#IsOpen()
let g:opened_vista = 1
endif
endif
endfunction
autocmd User lsp_diagnostics_updated call OpenVista()
Is your feature request related to a problem? Please describe.
Would like to automatically have the Vista window visible when starting to edit a file with vim-lsp. When using
nothing happens.
Describe the solution you'd like
Would like the above config to work.
Describe alternatives you've considered
Maybe it needs to be triggered when vim_lsp finishes loading symbols, but I don't know how to do this.
Additional context
The text was updated successfully, but these errors were encountered: