update callbag.vim to v0.3.0 and better handling of errors using materalize (#899)

* use materialize() for highlight references
* re-enable highlight references by default
* unlet s:Dispose()
* fix checking for isUndefined()
* update callbag to v0.3.0
* dispose if exists
This commit is contained in:
Prabir Shrestha
2020-08-31 21:02:34 -07:00
committed by GitHub
parent 1230ae8fa3
commit a9ac38e0f4
6 changed files with 102 additions and 19 deletions

View File

@@ -32,7 +32,7 @@ let g:lsp_preview_keep_focus = get(g:, 'lsp_preview_keep_focus', 1)
let g:lsp_use_event_queue = get(g:, 'lsp_use_event_queue', has('nvim') || has('patch-8.1.0889'))
let g:lsp_insert_text_enabled= get(g:, 'lsp_insert_text_enabled', 1)
let g:lsp_text_edit_enabled = get(g:, 'lsp_text_edit_enabled', has('patch-8.0.1493'))
let g:lsp_highlight_references_enabled = get(g:, 'lsp_highlight_references_enabled', 0)
let g:lsp_highlight_references_enabled = get(g:, 'lsp_highlight_references_enabled', 1)
let g:lsp_highlight_references_delay = get(g:, 'lsp_highlight_references_delay', 350)
let g:lsp_preview_float = get(g:, 'lsp_preview_float', 1)
let g:lsp_preview_autoclose = get(g:, 'lsp_preview_autoclose', 1)