You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(language-server): support LSP clients that only support workspace/configuration (#58)
* fix(language-server): support LSP clients that only support `workspace/configuration`.
See OmniSharp/csharp-language-server-protocol#1101 for the upstream bug that necessitates this. We can revert to unscoped configuration when that is resolved.
* docs(neovim): update instructions to illustrate setting a custom definitions file location
/// <para>Use when you have a fixed setting value.</para>
73
+
/// <para>The test client will ONLY support `workspace/configuration` and will always supply this fixed value</para>
74
+
/// <para>Using <see cref="didChangePath">didChangePath</see> will have no impact as the server will not support the `workspace/didChangeConfiguration` notification</para>
Copy file name to clipboardExpand all lines: src/language-server/Contextive.LanguageServer.Tests/HoverTests.fs
+3-3
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ let hoverTests =
37
37
$"Given definitions file '{fileName}' and file contents '{multiLineToSingleLine text}', server responds to hover request at Position {position} with '{expectedTerm}'"{
0 commit comments