Support basic UI customisation via a User autocommand

This commit is contained in:
Ben Jackson 2020-07-11 16:49:48 +01:00
commit 2c5937c2c1
6 changed files with 69 additions and 14 deletions

View file

@ -97,6 +97,12 @@ command! -bar
\ VimspectorReset
\ call vimspector#Reset()
" Dummy autocommands so that we can call this whenever
augroup VimspectorUserAutoCmds
au!
au User VimspectorUICreated silent
augroup END
" boilerplate {{{
call s:restore_cpo()
" }}}