Skip to content

Commit a9e9008

Browse files
authored
Merge pull request #41 from gnikit/feature/vscode-variable-res
Feature/vscode-variable-res
2 parents ab60590 + dc0a999 commit a9e9008

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

fortls/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "v2.1.0"
1+
__version__ = "v2.1.2"

fortls/langserver.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ def __init__(self, conn, settings: dict):
101101
# class variable. This way the command line and the file interfaces
102102
# are always on sync, with the same default arguments
103103
for k, v in settings.items():
104+
# Do not parse command line debug arguments
105+
if k.startswith("debug_") and k != "debug_log":
106+
continue
104107
setattr(self, k, v)
105108

106109
self.sync_type: int = 2 if self.incremental_sync else 1

0 commit comments

Comments
 (0)