Skip to content

Commit a9b80bc

Browse files
authored
Merge pull request #54 from NixOS/highlighter
Improve highlighter
2 parents e2418db + 19972f9 commit a9b80bc

24 files changed

+1418
-214
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

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

69
### Changed
710

build.gradle.kts

+6
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ gradle.buildFinished {
9797
}
9898

9999
tasks {
100+
withType<JavaCompile> {
101+
options.encoding = "UTF-8"
102+
}
103+
withType<Javadoc> {
104+
options.encoding = "UTF-8"
105+
}
100106

101107
task<Exec>("jbr") {
102108
description = "Create a symlink to package jetbrains.jdk"

src/main/java/org/nixos/idea/lang/NixSyntaxHighlighter.java

-175
This file was deleted.

0 commit comments

Comments
 (0)