summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter
diff options
context:
space:
mode:
authorDennis B <bluz71@users.noreply.github.com>2021-02-28 15:24:16 +1100
committerStephan Seitz <stephan.lauf@yahoo.de>2021-03-04 06:19:40 +0100
commitaca33c0acac29b63c570f079cc06a5458e6ac94c (patch)
tree65ec21823217b252d13148a1c3ba86b409d10778 /lua/nvim-treesitter
parentb5be7303b701f1bb30eda8b57687c22aa6b6d6fd (diff)
[highlights] Add TSSymbol highlight group
Addresses issue #892 Ruby and Dart literal symbols will now be highlighted by the new TSSymbol highlight group, which itself will, by default, link to the Vim Identifier highlight group. Vim theme authors can then set their TSSymbol colors. Symbol highlighting can apply to a number of languages as noted in the following Wikipedia page: https://en.wikipedia.org/wiki/Symbol_(programming) Not just for Ruby and Dart.
Diffstat (limited to 'lua/nvim-treesitter')
-rw-r--r--lua/nvim-treesitter/highlight.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/highlight.lua b/lua/nvim-treesitter/highlight.lua
index 753aeed7..a0c6ee61 100644
--- a/lua/nvim-treesitter/highlight.lua
+++ b/lua/nvim-treesitter/highlight.lua
@@ -71,6 +71,8 @@ hlmap["string"] = "TSString"
hlmap["string.regex"] = "TSStringRegex"
hlmap["string.escape"] = "TSStringEscape"
+hlmap["symbol"] = "TSSymbol"
+
hlmap["tag"] = "TSTag"
hlmap["tag.delimiter"] = "TSTagDelimiter"