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.
2 parents b32e084 + 4980ef4 commit 3ba09d1Copy full SHA for 3ba09d1
CHANGELOG.md
@@ -2,6 +2,13 @@
2
3
## Unreleased
4
5
+## 3.1.2
6
+
7
+### Fixed
8
9
+- Fixed incorrect document symbol for `SUBMODULE` statements
10
+ ([#413](https://github.com/fortran-lang/fortls/issues/413))
11
12
## 3.1.1
13
14
### 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