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 b32e084 commit 4b2465aCopy full SHA for 4b2465a
CHANGELOG.md
@@ -2,6 +2,11 @@
2
3
## Unreleased
4
5
+### Fixed
6
+
7
+- Fixed incorrect document symbol for `SUBMODULE` statements
8
+ ([#413](https://github.com/fortran-lang/fortls/issues/413))
9
10
## 3.1.1
11
12
### Fixed
fortls/langserver.py
@@ -279,7 +279,7 @@ def map_types(type):
279
280
def serve_document_symbols(self, request: dict):
281
def map_types(type, in_class: bool = False):
282
- if type == 1:
+ if type in (1, 8):
283
return 2
284
elif type in (2, 3):
285
if in_class:
0 commit comments