File tree Expand file tree Collapse file tree 3 files changed +42
-2
lines changed Expand file tree Collapse file tree 3 files changed +42
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
## [ Unreleased]
8
8
- Initial release
9
9
10
- ## [ 0.4.0] - 2017-05-29
10
+ ## [ 0.4.0] - 2017-05-29
11
11
### Added
12
12
- Show docs for intrinsic functions on hover
13
13
### Changed
Original file line number Diff line number Diff line change 44
44
"scopeName" : " source.fortran.modern" ,
45
45
"path" : " ./syntaxes/fortran90.tmLanguage"
46
46
}
47
- ]
47
+ ],
48
+ "snippets" : [
49
+ {
50
+ "language" : " fortran90" ,
51
+ "path" : " ./snippets/fortran90.json"
52
+ }
53
+ ]
48
54
},
49
55
"scripts" : {
50
56
"vscode:prepublish" : " tsc -p ./" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "Program Skeleton" : {
3
+ "prefix" : " program" ,
4
+ "body" : [
5
+ " program ${1:name}" ,
6
+ " implicit none" ,
7
+ " " ,
8
+ " end program ${1:name}"
9
+ ],
10
+ "description" : " Program Skeleton"
11
+ },
12
+ "Module Skeleton" : {
13
+ "prefix" : " module" ,
14
+ "body" : [
15
+ " module ${1:name}" ,
16
+ " implicit none" ,
17
+ " " ,
18
+ " contains" ,
19
+ " end module ${1:name}"
20
+ ],
21
+ "description" : " Create a new module"
22
+ },
23
+ "Do Loop" : {
24
+ "prefix" : " do" ,
25
+ "body" : [
26
+ " do ${1:index} = ${2:start},${3:end}" ,
27
+ " !TODO_statement" ,
28
+ " ${4}" ,
29
+ " enddo"
30
+ ],
31
+ "description" : " Create a do loop"
32
+ }
33
+
34
+ }
You can’t perform that action at this time.
0 commit comments