We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
workspace/didChangeConfiguration
1 parent 092de41 commit 6e7a2c8Copy full SHA for 6e7a2c8
CHANGELOG.md
@@ -2,6 +2,13 @@
2
3
## Unreleased
4
5
+## 2.10.0
6
+
7
+### Fixed
8
9
+- Fixed `workspace/didChangeConfiguration` requests that caused errors in VS Code logs
10
+ ([#114](https://github.com/gnikit/fortls/issues/114))
11
12
## 2.9.0
13
14
### Fixed
fortls/langserver.py
@@ -147,6 +147,7 @@ def noop(request: dict):
147
"textDocument/codeAction": self.serve_codeActions,
148
"initialized": noop,
149
"workspace/didChangeWatchedFiles": noop,
150
+ "workspace/didChangeConfiguration": noop,
151
"workspace/symbol": self.serve_workspace_symbol,
152
"$/cancelRequest": noop,
153
"$/setTrace": noop,
0 commit comments