Skip to content

Commit

Permalink
Update ycmd submodule
Browse files Browse the repository at this point in the history
Changes since the last update:

ycm-core/ycmd#1728 YcmShowDetailedDiagnostic should now match what is echoed on the command line.
ycm-core/ycmd#1731 Add support for `workspace/didChangeWorkspaceFolders` LSP notification.
ycm-core/ycmd#1730 LSP servers are now updated with latest server state afer reset
ycm-core/ycmd#1727 Update JDT to version 1.31.0
ycm-core/ycmd#1726 C# symbol search filtering fix
ycm-core/ycmd#1724 C# GoToDocumentOutline consistency patch
ycm-core/ycmd#1723 Implement GoToDocumentOutline in C#
ycm-core/ycmd#1716 Display tsserver tags in detailed info and GetDoc

`workspace/didChangeWorkspaceFolders` seems to be working fine for java,
rust and go, but should be considered experimental. Definitely more
field experience is needed.
What it should do is allow LSP servers to understand multiple projects
in the same vim instance.
  • Loading branch information
bstaletic committed Feb 18, 2024
1 parent f078924 commit b6a327e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/ycmd
Submodule ycmd updated 40 files
+2 −0 README.md
+3 −3 build.py
+3 −6 cpp/CMakeLists.txt
+1 −5 cpp/ycm/benchmarks/CMakeLists.txt
+1 −5 cpp/ycm/tests/CMakeLists.txt
+1 −0 ycmd/__main__.py
+40 −14 ycmd/completers/cs/cs_completer.py
+4 −22 ycmd/completers/java/java_completer.py
+95 −29 ycmd/completers/language_server/language_server_completer.py
+15 −2 ycmd/completers/language_server/language_server_protocol.py
+32 −0 ycmd/completers/typescript/typescript_completer.py
+40 −0 ycmd/tests/clangd/debug_info_test.py
+17 −0 ycmd/tests/clangd/diagnostics_test.py
+4 −0 ycmd/tests/clangd/testdata/diag_ranges/compile_flags.txt
+4 −0 ycmd/tests/clangd/testdata/diag_ranges/detailed_diagnostic.cc
+65 −0 ycmd/tests/cs/subcommands_test.py
+6 −0 ycmd/tests/cs/testdata/testy/Empty.cs
+9 −0 ycmd/tests/cs/testdata/testy/SingleEntity.cs
+2 −0 ycmd/tests/cs/testdata/testy/testy.csproj
+2 −2 ycmd/tests/go/__init__.py
+9 −0 ycmd/tests/go/debug_info_test.py
+6 −7 ycmd/tests/go/get_completions_test.py
+6 −2 ycmd/tests/go/go_module/thing.go
+3 −0 ycmd/tests/go/go_module_2/go.mod
+7 −0 ycmd/tests/go/go_module_2/main.go
+24 −4 ycmd/tests/go/subcommands_test.py
+8 −0 ycmd/tests/java/debug_info_test.py
+0 −42 ycmd/tests/java/server_management_test.py
+167 −49 ycmd/tests/java/subcommands_test.py
+1 −1 ycmd/tests/java/testdata/simple_gradle_project/gradle/wrapper/gradle-wrapper.properties
+5 −1 ycmd/tests/javascriptreact/get_completions_test.py
+16 −0 ycmd/tests/language_server/generic_completer_test.py
+4 −2 ycmd/tests/language_server/language_server_completer_test.py
+5 −4 ycmd/tests/rust/__init__.py
+15 −2 ycmd/tests/rust/debug_info_test.py
+32 −4 ycmd/tests/rust/subcommands_test.py
+2 −0 ycmd/tests/shutdown_test.py
+15 −1 ycmd/tests/test_utils.py
+31 −0 ycmd/tests/typescript/get_completions_test.py
+23 −0 ycmd/tests/typescript/subcommands_test.py

0 comments on commit b6a327e

Please sign in to comment.