Skip to content

Commit

Permalink
Merge pull request #54 from NixOS/highlighter
Browse files Browse the repository at this point in the history
Improve highlighter
  • Loading branch information
JojOatXGME committed Mar 13, 2023
2 parents e2418db + 19972f9 commit a9b80bc
Show file tree
Hide file tree
Showing 24 changed files with 1,418 additions and 214 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased]
### Added
- Highlighting of built-in functions and constants
- Support for [semantic highlighting](https://www.jetbrains.com/help/idea/configuring-colors-and-fonts.html#semantic-highlighting)
- Settings to change the colors used by the highlighter

### Changed

Expand Down
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@ gradle.buildFinished {
}

tasks {
withType<JavaCompile> {
options.encoding = "UTF-8"
}
withType<Javadoc> {
options.encoding = "UTF-8"
}

task<Exec>("jbr") {
description = "Create a symlink to package jetbrains.jdk"
Expand Down
175 changes: 0 additions & 175 deletions src/main/java/org/nixos/idea/lang/NixSyntaxHighlighter.java

This file was deleted.

0 comments on commit a9b80bc

Please sign in to comment.