Skip to content

Commit 6e45aaf

Browse files
Merge pull request #74 from krvajal/hotfix/highlight
Fix rule for highlighting logical fortran '<='
2 parents 985cd8b + 3ed1063 commit 6e45aaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

syntaxes/fortran_free-form.tmLanguage.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3352,7 +3352,7 @@
33523352
"assignment-operator": {
33533353
"comment": "Introduced in the Fortran 1977 standard.",
33543354
"name": "keyword.operator.assignment.fortran",
3355-
"match": "(?<!\\=)(\\=)(?!\\=|\\>)"
3355+
"match": "(?<!\\/|\\=|\\<|\\>)(\\=)(?!\\=|\\>)"
33563356
},
33573357
"derived-type-operators": {
33583358
"comment": "Introduced in the Fortran 1995 standard.",
@@ -3410,7 +3410,7 @@
34103410
{
34113411
"comment": "Introduced in the Fortran 1990 standard.",
34123412
"name": "keyword.logical.fortran.modern",
3413-
"match": "(\\=\\=|\\/\\=|\\>\\=|(?<!\\=)\\>|\\<|\\<\\=)"
3413+
"match": "(\\=\\=|\\/\\=|\\>\\=|(?<!\\=)\\>|\\<\\=|\\<)"
34143414
}
34153415
]
34163416
},

0 commit comments

Comments
 (0)