Skip to content

Commit 1b07770

Browse files
committed
Update readme
1 parent 489efab commit 1b07770

File tree

2 files changed

+29
-16
lines changed

2 files changed

+29
-16
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Modern Fortran language support for VSCode
22

3-
This is the README for your extension "fortran-linter". After writing up a brief description, we recommend including the following sections.
4-
3+
This extension provides support for the Fortran programming language. It includes syntax highlighting, code snippets and
4+
a linting based on gfortran.
5+
In the future will include autocompletion and documentation support...
56
## Features
67

7-
Provides linting capabilities to Fortran language in Visual Studio Code
8+
Provides linting capabilities to Fortran language in Visual Studio Code.
89

910
Features:
1011
* Syntax highlighting
@@ -16,4 +17,7 @@ Features:
1617
gfortran on your path, or wherever you configure it to be.
1718

1819

19-
**Enjoy!**
20+
## Notice
21+
The syntax highlight support was imported from [TextMate bundle](https://github.com/textmate/fortran.tmbundle)
22+
23+
The idea of using gfortran cames from this awesome [fortran plugin](https://github.com/315234/SublimeFortran) for Sublime Text.

package.json

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "linter-gfortran",
33
"displayName": "fortran-linter",
44
"description": "A linter for fortran code based on gfortran.",
5-
"version": "0.0.1",
6-
"publisher": "krvajal",
5+
"version": "0.1.0",
6+
"publisher": "krvajalm",
77
"engines": {
88
"vscode": "^1.12.0"
99
},
@@ -12,22 +12,31 @@
1212
"url": "https://github.com/krvajalmiguelangel/vscode-fortran-support.git"
1313
},
1414
"categories": [
15-
"Languages",
15+
"Languages",
1616
"Snippets"
17-
],
17+
],
1818
"activationEvents": [
1919
"onLanguage:fortran90"
2020
],
2121
"main": "./out/src/extension",
2222
"contributes": {
23-
"languages": [{
24-
"id": "fortran90",
25-
"aliases": ["Fortran90", "fortran90"],
26-
"extensions": [".f90",".F90",".f95",".F95"],
27-
"configuration": "./language-configuration.json"
28-
29-
}],
30-
"grammars": [
23+
"languages": [
24+
{
25+
"id": "fortran90",
26+
"aliases": [
27+
"Fortran90",
28+
"fortran90"
29+
],
30+
"extensions": [
31+
".f90",
32+
".F90",
33+
".f95",
34+
".F95"
35+
],
36+
"configuration": "./language-configuration.json"
37+
}
38+
],
39+
"grammars": [
3140
{
3241
"language": "fortran90",
3342
"scopeName": "source.fortran.modern",

0 commit comments

Comments
 (0)