X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=vim%2F.vim%2Fautoload%2Fmylsp.vim;fp=vim%2F.vim%2Fautoload%2Fmylsp.vim;h=0000000000000000000000000000000000000000;hb=c571224ad14b80a040c164399e7dede5dd31ebd0;hp=42b05ad455823d905d92733ea330ff92f9fb3a44;hpb=8f8b8da2508211746a9a7988925c1cfe3bb44725;p=dotfiles.git diff --git a/vim/.vim/autoload/mylsp.vim b/vim/.vim/autoload/mylsp.vim deleted file mode 100644 index 42b05ad..0000000 --- a/vim/.vim/autoload/mylsp.vim +++ /dev/null @@ -1,11 +0,0 @@ -function! mylsp#qfpopulate() abort - let l = [] - for d in lsp#ui#vim#diagnostics#get_all_buffer_diagnostics() - call add(l, { - \"lnum": d["range"]["start"]["line"], - \"col": d["range"]["start"]["character"], - \"text": d["message"], - \"bufnr": bufnr()}) - endfor - call setqflist(l, "r") -endfunction