Skip to content

Commit 6e7a2c8

Browse files
committed
Disable workspace/didChangeConfiguration
Fixes Implement didChangeConfiguration #114
1 parent 092de41 commit 6e7a2c8

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## Unreleased
44

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+
512
## 2.9.0
613

714
### Fixed

fortls/langserver.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ def noop(request: dict):
147147
"textDocument/codeAction": self.serve_codeActions,
148148
"initialized": noop,
149149
"workspace/didChangeWatchedFiles": noop,
150+
"workspace/didChangeConfiguration": noop,
150151
"workspace/symbol": self.serve_workspace_symbol,
151152
"$/cancelRequest": noop,
152153
"$/setTrace": noop,

0 commit comments

Comments
 (0)