vscode-fortran-ls icon indicating copy to clipboard operation
vscode-fortran-ls copied to clipboard

Fortran IntelliSense for Visual Studio Code

Results 21 vscode-fortran-ls issues
Sort by recently updated
recently updated
newest added

Hi Hansen, I have installed fortls and Fortran language server. However, I got this error "Error launching fortls: Please check that all selected options are supported by your language server...

I hava configured Fortran IntelliSense with another extension "modern fortran" a werid error report from "Fortran IntelliSense" here is my configuration

I remoted into my linux environment and tried to set the path to fortls executable. It doesn't seem to recognize .F90 files. The same file works fine in windows. I...

keep getting the following error message in my project in VSC ![image](https://user-images.githubusercontent.com/11255899/147953884-d7f03955-bca5-467b-9a80-ec0588c656ba.png) have the path defined in settings.json: "fortran-ls.executablePath": "C:\\Users\\Username\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python39\\Scripts", and also in the XXXX.code-workspace the same: "fortran-ls.executablePath": "C:\\Users\\Username\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python39\\Scripts", have...

https://github.com/hansec/vscode-fortran-ls/blob/620a54c955c6c4b1c272f634faba906d56e30ce9/src/extension.ts#L168 If just before, you add the line: { scheme: 'file', language: 'FortranFixedForm', pattern: `${folder.uri.fsPath}/**/*` }, And in the package.json, you activate on FortranFixedForm: ``` "activationEvents": [ "onLanguage:fortran", "onLanguage:fortran-modern", "onLanguage:fortran_fixed-form",...

Definitely not a bug, I just don't get how to tell Fortran Intellisense where to look for imported modules I tried to tell Fortran Intellisense where to look out for...

The version of the extension on the vscode marketplace is out of date. https://marketplace.visualstudio.com/items?itemName=hansec.fortran-ls&ssr=false#version-history The missing update has the ability to disable diagnostics which I'd like to have. Could this...

*Problem:* I typically send Fortran files through a C preprocessor before sending them to a Fortran compiler. The C preprocessor directives confuse Fortran Intellisense to the point where it cannot...