You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add experimental support for code assistance using a language server (#90)
Added basic support for using the language sever protocol with the [fortran-languague-server](https://github.com/hansec/fortran-language-server)
This is still an experimental feature and contains several bugs. But the idea is to get it out there as fast as possible and fix the bug later on.
Copy file name to clipboardExpand all lines: package.json
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
"version": "1.3.1",
6
6
"publisher": "krvajalm",
7
7
"engines": {
8
-
"vscode": "^1.19.0"
8
+
"vscode": "^1.22.0"
9
9
},
10
10
"icon": "images/icon.png",
11
11
"repository": {
@@ -129,14 +129,19 @@
129
129
],
130
130
"description": "Specify what kind of symbols should be shown by the symbols' provider"
131
131
},
132
+
"fortran.useLanguageServer": {
133
+
"type": "boolean",
134
+
"default": true,
135
+
"description": "Experimental: Not available in Windows. Use Fortran language server from hansec for Hover, Definition, Find All References, Signature Help, File Outline and Workspace Symbol features"
136
+
},
132
137
"fortran.preferredCase": {
133
138
"type": "string",
134
139
"default": "lowercase",
135
140
"enum": [
136
141
"lowercase",
137
142
"uppercase"
138
143
],
139
-
"description": "Scpecify the word case to use when suggesting autocomplete options (One of 'lowercase' or 'upercase')"
144
+
"description": "Specify the word case to use when suggesting autocomplete options (One of 'lowercase' or 'upercase')"
0 commit comments