]> Sergey Matveev's repositories - dotfiles.git/blobdiff - vim/.vim/autoload/mylsp.vim
Various Vim plugins separated on packages
[dotfiles.git] / vim / .vim / autoload / mylsp.vim
diff --git a/vim/.vim/autoload/mylsp.vim b/vim/.vim/autoload/mylsp.vim
deleted file mode 100644 (file)
index 42b05ad..0000000
+++ /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