Skip to content

Commit

Permalink
vim bundle: switch branch of LSP client
Browse files Browse the repository at this point in the history
  • Loading branch information
ulidtko committed Mar 4, 2024
1 parent edb0f48 commit c9e578f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HOME/vim/bundle/LanguageClient-neovim
Submodule LanguageClient-neovim updated 54 files
+21 −0 .circleci/config.yml
+3 −3 .github/CONTRIBUTING.md
+0 −131 .github/workflows/ci.yml
+0 −97 .github/workflows/release.yml
+56 −0 .travis.yml
+0 −11 .vim/settings.json
+15 −25 Cargo.lock
+1 −1 Cargo.toml
+4 −6 Makefile
+1 −1 README.md
+21 −17 autoload/LSP.vim
+15 −37 autoload/LanguageClient.vim
+16 −0 ci/Dockerfile
+55 −0 ci/before_deploy.sh
+37 −0 ci/cleanup-binary-tags.py
+47 −0 ci/install.sh
+18 −0 ci/script.sh
+109 −64 doc/LanguageClient.txt
+0 −1 install.sh
+1 −0 rust-toolchain
+31 −73 src/config/mod.rs
+0 −11 src/config/server_command.rs
+1 −2 src/extensions/clangd.rs
+3 −4 src/extensions/gopls.rs
+0 −1 src/extensions/mod.rs
+0 −88 src/extensions/rls.rs
+4 −4 src/extensions/rust_analyzer.rs
+13 −2,572 src/language_client.rs
+4,085 −0 src/language_server_protocol.rs
+5 −20 src/logger.rs
+0 −115 src/lsp/client.rs
+0 −52 src/lsp/completion_item.rs
+0 −36 src/lsp/dollar.rs
+0 −48 src/lsp/mod.rs
+0 −1,086 src/lsp/text_document.rs
+0 −70 src/lsp/window.rs
+0 −94 src/lsp/workspace.rs
+1 −1 src/main.rs
+12 −12 src/rpcclient.rs
+55 −88 src/rpchandler.rs
+3 −13 src/sign.rs
+80 −73 src/types.rs
+72 −38 src/utils.rs
+4 −4 src/viewport.rs
+9 −9 src/vim.rs
+2 −2 src/vimext.rs
+2 −2 src/watcher.rs
+74 −72 tests/LanguageClient_test.py
+0 −3 tests/data/sample-go/go.mod
+0 −27 tests/data/sample-go/main.go
+0 −8 tests/data/sample-go/other.go
+7 −0 tests/data/sample-go/simple.go
+1 −0 tests/data/sample-rs/src/libs.rs
+0 −1 tests/data/vimrc

0 comments on commit c9e578f

Please sign in to comment.