Skip to content

Commit e505d3b

Browse files
committed
update readme
1 parent a0aa217 commit e505d3b

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,27 @@ This extension provides support for the Fortran programming language. It include
88
* Code Snippets
99
* Documentation on hover for intrisic functions
1010
* 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.
23+
```
24+
{
25+
"fortran.gfortranExecutable": '/usr/local/bin/gfortran-4.7',
26+
}
27+
```
28+
1129

1230
## Snippets
13-
This are some of the snippets included
31+
This is a list of some of the snippets included, if you like to include some additionals snippets please let me know and I will add them.
1432
#### Program skeleton
1533
![program snippet](https://media.giphy.com/media/OYdq9BKYMOOdy/giphy.gif )
1634
#### Module skeleton

0 commit comments

Comments
 (0)