VSCode keeps showing the error notification,
Error launching fortls: Please check that all selected options are supported by your language server version. Source: FORTRAN IntelliSense (Extension)
I have fortls installed and provided the path in settings.json as,
"fortran-ls.executablePath": "C:\\Users\\xxxxx\\Anaconda3\\Scripts\\fortls.exe"
I am not sure what options are not supported by the fortran language server version or how to change the version. Also, most of the features of Modern Fortran and Fortran IntelliSense extensions are not working, is this for not being able to use fortran language server? Sorry, I'm new to VSCode. Here's my full settings.json file in case you want to have a look for what options are not being compatible,
"python.defaultInterpreterPath": "C:\\Users\\xxxxx\\Anaconda3\\python.exe",
"fortran-ls.executablePath": "C:\\Users\\xxxxx\\Anaconda3\\Scripts\\fortls.exe",
"editor.codeLens": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"diffEditor.codeLens": true,
"editor.formatOnPaste": true,
"editor.quickSuggestionsDelay": 1000,
"workbench.colorTheme": "Visual Studio Dark - C++",
"editor.minimap.maxColumn": 200,
"editor.fontSize": 16,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"editor.rulers": [
132
],
"workbench.colorCustomizations": {
"editorRuler.foreground": "#458cff"
},
"workbench.iconTheme": "vscode-icons",
"fortran.formatting.formatter": "fprettify",
"editor.quickSuggestions": {
"other": "on",
"comments": "on",
"strings": "on"
},
"fortran.linter.compiler": "gfortran"
Thank you so much!