Skip to content

Commit

Permalink
Update Readme - syntax highlighting JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
315234 authored Jun 21, 2016
1 parent 97b827e commit 7055677
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Pull requests are welcome :)
The Fixed Form Fortran syntax included in this package sets some rulers to help code indentation and show where the 72 character limit is. If you find these distracting, they can be disabled by creating a language specific settings file.

To do this, create a file called `FortranFixedForm.sublime-settings` in your `Packages/User/` containing the following:
```
```JSON
{
"rulers": []
}
Expand All @@ -40,27 +40,24 @@ This package includes a linter based on SublimeLinter3. SublimeLinter user setti

You may need to tell SublimeLinter where `gfortran` is located by adding it to `paths` in SublimeLinter user settings:

```
```JSON
{
"user": {
...
"paths": {
"linux": [],
"osx": [
"/usr/local/bin"
],
"windows": []
},
...
}
}
```
Additional command line flags for `gfortran` may be also specified:
```
```JSON
{
"user": {
"linters": {
...
"gfortranfixedform": {
"@disable": false,
"args": [
Expand All @@ -78,9 +75,7 @@ Additional command line flags for `gfortran` may be also specified:
],
"excludes": []
},
...
},
...
}
}
```
Expand Down

0 comments on commit 7055677

Please sign in to comment.