Skip to content

Commit 6da12de

Browse files
authored
Merge pull request #224 from jefflarkin/openacc
Initial support for OpenACC syntax
2 parents 8ab40b2 + d9d4582 commit 6da12de

File tree

5 files changed

+648
-35
lines changed

5 files changed

+648
-35
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Fixes line continuation syntax highlighting for OpenMP
13+
([#225](https://github.com/krvajal/vscode-fortran-support/issues/225))
14+
1015
### Changed
1116

1217
- Fixes syntax highlighting for nested case-select constructs
1318
([#181](https://github.com/krvajal/vscode-fortran-support/issues/181)) via
1419
([#218](https://github.com/krvajal/vscode-fortran-support/pull/218))
1520

21+
### Added
22+
23+
- Added syntax highlight support for OpenACC
24+
([224](https://github.com/krvajal/vscode-fortran-support/pull/224))
25+
1626
## [2.2.1] - 2020-04-11
1727

1828
### Fixed

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,13 @@
7676
"source.fortran.free"
7777
]
7878
},
79+
{
80+
"scopeName": "source.openacc",
81+
"path": "./syntaxes/openacc_lang.json",
82+
"injectTo": [
83+
"source.fortran.free"
84+
]
85+
},
7986
{
8087
"language": "fortran_fixed-form",
8188
"scopeName": "source.fortran.fixed",

0 commit comments

Comments
 (0)