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
Copy file name to clipboardExpand all lines: package.json
+16-3
Original file line number
Diff line number
Diff line change
@@ -228,10 +228,20 @@
228
228
"default": "fortls",
229
229
"description": "Path to the Fortran language server (fortls)."
230
230
},
231
-
"fortran.fortls.preserveKeywordOrder": {
231
+
"fortran.fortls.configure": {
232
+
"type": "string",
233
+
"default": "",
234
+
"description": "Filename holding additional configuration options. For more see: https://gnikit.github.io/fortls/options.html#configuration-using-a-file"
235
+
},
236
+
"fortran.fortls.sortKeywords": {
232
237
"type": "boolean",
233
-
"default": true,
234
-
"description": "Display variable keywords information when hovering in original order (default: sort to consistent ordering)."
238
+
"default": false,
239
+
"description": "Display variable keywords information when hovering in a sorted, consistent order."
240
+
},
241
+
"fortran.fortls.disableAutoupdate": {
242
+
"type": "boolean",
243
+
"default": false,
244
+
"description": "fortls will automatically attempt to update itself from PyPi. Set this option if you want to fix your version of fortls. Autoudpate will not occur for Anaconda environments."
235
245
},
236
246
"fortran.fortls.disableDiagnostics": {
237
247
"type": "boolean",
@@ -318,6 +328,9 @@
318
328
},
319
329
"fortran.provideCompletion": {
320
330
"deprecationMessage": "fortran.provideCompletion has been renamed to fortran.provide.autocomplete. By default the fortls autocompletion is used, to enable the built-in autocompletion turn on the Built-in option."
331
+
},
332
+
"fortran.fortls.preserveKeywordOrder": {
333
+
"deprecationMessage": "This option is now the default, use fortran.fortls.sortKeywords to sort keywords."
0 commit comments