vim-lsp icon indicating copy to clipboard operation
vim-lsp copied to clipboard

async language server protocol plugin for vim and neovim

Results 95 vim-lsp issues
Sort by recently updated
recently updated
newest added

Now vim has direct handling on LSP messages, we can use it when available https://github.com/vim/vim/commit/9247a221ce7800c0ae1b3487112d314b8ab79f53 `has("patch-8.2.4648")` can determine this feature

When using fuzzy match, when lsp returns InsertReplaceEdit, range was not found error. (I used volar-server when writing Vue) 1. setup fuzzy match for asyncomplete.vim in vimrc ```vim " vimrc...

Some language servers report unexpected EOF errors on the line that's actually one past the last line of the file. Be a bit more accomodating and just show them on...

``` autoload/lsp/ui/vim/folding.vim 31: silent! call prop_type_add(s:textprop_name, {'bufnr': a:buf, 'priority': lsp#internal#textprop#priority('folding')}) autoload/lsp/internal/ui/quickpick.vim 7:let s:has_proptype = exists('*prop_type_add') && exists('*prop_type_delete') 62: call prop_type_add('highlight', { 'highlight': 'Directory', 'bufnr': s:state['resultsbufnr'] }) autoload/lsp/internal/semantic.vim 401: silent! call...

After installing this plugin, seemingly at random when I work on a c++ file and I hit tab, I get \t\t instead of \t. Whenever this happens, I do `:shiftwidth`...

This PR fixes an issue where document highlighting of references will stop working on buffers that have switched to a different buffer within the same window. Instead of returning after...

Hello, I am using this package in ubuntu 18.04 with the latest vim (9.0). As I run more vim in different terminal, the more clang-d is used and it ends...

For efm-langserver, some linter command return 0 for line number. This is wrong value for Language Server Protocol. But this is useful to know that there are errors in the...

win 10, gvim 8.2, julialang. I used the lsp-hover function to check the format syntax. The hover would display the previous "@time"'s format syntax instead of the "broadcast!"'s when the...