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: README.md
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,27 @@ This extension provides support for the Fortran programming language. It include
8
8
* Code Snippets
9
9
* Documentation on hover for intrisic functions
10
10
* Code linting based on `gfortran` to show errors swiggles in your code
11
+
## Settings
12
+
13
+
You can control the include paths to be used by the linter with the `fortran.includePaths` setting.
14
+
```
15
+
{
16
+
"fortran.includePath": [
17
+
"/usr/local/include",
18
+
"/usr/local"
19
+
]
20
+
}
21
+
```
22
+
By default the `gfortran` executable is assumed to be found in the path. In order to use a different one or if it can't be found in the path you can point the extension to use a custom one with the `fortran.gfortranExecutable` setting.
0 commit comments