Skip to content

Commit

Permalink
Merge pull request #41 from gnikit/feature/vscode-variable-res
Browse files Browse the repository at this point in the history
Feature/vscode-variable-res
  • Loading branch information
gnikit authored Jan 31, 2022
2 parents ab60590 + dc0a999 commit a9e9008
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fortls/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "v2.1.0"
__version__ = "v2.1.2"
3 changes: 3 additions & 0 deletions fortls/langserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ def __init__(self, conn, settings: dict):
# class variable. This way the command line and the file interfaces
# are always on sync, with the same default arguments
for k, v in settings.items():
# Do not parse command line debug arguments
if k.startswith("debug_") and k != "debug_log":
continue
setattr(self, k, v)

self.sync_type: int = 2 if self.incremental_sync else 1
Expand Down

0 comments on commit a9e9008

Please sign in to comment.