Skip to content

Commit

Permalink
fix: address issue preventing folded regions from receiving highlights
Browse files Browse the repository at this point in the history
closes #210
  • Loading branch information
dsifford committed Mar 20, 2022
1 parent fd2ffd0 commit 218eabe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- Fix incorrect javascript destructuring colors in certain conditions. #203
- Correctly highlight PHP semicolons when php expression is inside string. #208
- Fix issue preventing folded regions from receiving any highlight colors. #210

## 2.24.1

Expand Down
2 changes: 1 addition & 1 deletion src/dracula.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ colors:
editor.selectionBackground: *SELECTION # Color of the editor selection
editor.selectionHighlightBackground: *BGLighter # Color for regions with the same content as the selection
editor.inactiveSelectionBackground: # Color of the selection in an inactive editor
editor.foldBackground: *BGDark # Background color for folded ranges
editor.foldBackground: !alpha [ *BGDark, 80 ] # Background color for folded ranges

editor.wordHighlightBackground: !alpha [ *CYAN, 50 ] # Background color of a symbol during read-access, for example when reading a variable
editor.wordHighlightStrongBackground: !alpha [ *GREEN, 50 ] # Background color of a symbol during write-access, for example when writing to a variable
Expand Down

0 comments on commit 218eabe

Please sign in to comment.