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.
1 parent 881addd commit 6de6684Copy full SHA for 6de6684
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# CHANGELONG
2
3
+## 1.14.1
4
+
5
+### Fixes
6
7
+* Fixes language server features not triggering for variables in column 0
8
9
## 1.14.0
10
11
### Fixes
fortls/objects.py
@@ -308,7 +308,7 @@ def get_var_stack(line):
308
"CALL self%method(this%foo" -> ["this", "foo"]
309
"""
310
if len(line) == 0:
311
- return None
+ return [""]
312
final_var, sections = get_paren_level(line)
313
if final_var == "":
314
return [""]
0 commit comments