Skip to content

Commit

Permalink
Highlight starting percent sign for variables
Browse files Browse the repository at this point in the history
  • Loading branch information
phw committed May 6, 2021
1 parent c4cb7e4 commit a14b885
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.1] - ????-??-??
### Add
- Highlight starting percent sign for variables

### Fixed
- Fixed function names starting with "noop" not getting highlighted

Expand Down
5 changes: 3 additions & 2 deletions language-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
},
// symbols used as brackets
"brackets": [
["(", ")"]
["(", ")"],
["%", "%"]
],
// symbols that are auto closed when typing
"autoClosingPairs": [
Expand All @@ -19,4 +20,4 @@
["(", ")"],
["%", "%"]
]
}
}

0 comments on commit a14b885

Please sign in to comment.