aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorSantos Gallegos <stsewd@protonmail.com>2021-07-11 15:59:53 -0500
committerGitHub <noreply@github.com>2021-07-11 15:59:53 -0500
commit647268183f8eb164bf8c94ec1c87634f51f5c34a (patch)
treedb59a8e100d280ad877769b277da51fb30dc1ab7 /lua
parentNew stylua version (#1555) (diff)
downloadnvim-treesitter-647268183f8eb164bf8c94ec1c87634f51f5c34a.tar
nvim-treesitter-647268183f8eb164bf8c94ec1c87634f51f5c34a.tar.gz
nvim-treesitter-647268183f8eb164bf8c94ec1c87634f51f5c34a.tar.bz2
nvim-treesitter-647268183f8eb164bf8c94ec1c87634f51f5c34a.tar.lz
nvim-treesitter-647268183f8eb164bf8c94ec1c87634f51f5c34a.tar.xz
nvim-treesitter-647268183f8eb164bf8c94ec1c87634f51f5c34a.tar.zst
nvim-treesitter-647268183f8eb164bf8c94ec1c87634f51f5c34a.zip
Highlights: define string.special (#1551)
* Highlights: define string.special This was in our CONTRIBUTING.md file, but wasn't defined. Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/1405 * Use string.escape
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/highlight.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/highlight.lua b/lua/nvim-treesitter/highlight.lua
index e082bd5e9..345737a74 100644
--- a/lua/nvim-treesitter/highlight.lua
+++ b/lua/nvim-treesitter/highlight.lua
@@ -72,6 +72,7 @@ hlmap["repeat"] = "TSRepeat"
hlmap["string"] = "TSString"
hlmap["string.regex"] = "TSStringRegex"
hlmap["string.escape"] = "TSStringEscape"
+hlmap["string.special"] = "TSStringSpecial"
hlmap["symbol"] = "TSSymbol"