Skip to content

Commit c2d20c2

Browse files
authored
Merge pull request projekt0n#289 from tmillr/fix-incorrect-highlights
fix(syntax-hl): misc corrections
2 parents 7e08e9c + 7974ec8 commit c2d20c2

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

lua/github-theme/group/modules/treesitter.lua

+2
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,8 @@ If you want to stay on nvim 0.7, disable the module, or track on 'v0.0.x' branch
242242
['@constant.builtin.rust'] = { fg = pl.syntax.variable },
243243
['@namespace.rust'] = FALLBACK_OR_NONE,
244244
['@preproc.rust'] = { fg = syn.const },
245+
['@storageclass.lifetime.rust'] = { link = '@tag.rust' },
246+
['@storageclass.lifetime.punctuation.rust'] = { link = '@punctuation.special.rust' },
245247

246248
-- SCSS
247249
['@property.scss'] = { link = '@constant' },

lua/github-theme/group/syntax.lua

+14
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,20 @@ function M.get(spec, config)
126126
diffFile = { fg = spec.diag.info }, -- The filename of the diff ('diff --git a/readme.md b/readme.md')
127127
diffLine = { fg = syn.builtin2 }, -- Line information ('@@ -169,6 +169,9 @@')
128128
diffIndexLine = { fg = syn.preproc }, -- Index line of diff ('index bf3763d..94f0f62 100644')
129+
130+
-- Language specific -------------------------------------------------------
131+
132+
-- Json
133+
jsonKeyword = { fg = syn.tag }, -- Json keys (e.g. `"key": "value"`)
134+
jsonNull = { link = 'Constant' },
135+
136+
-- Lua
137+
luaFunction = { link = 'Keyword' }, -- Function keywords (`function`, `end`) (corrects upstream inaccuracy/bug)
138+
luaTable = FALLBACK_OR_NONE, -- Table brackets (`{}`)
139+
140+
-- Yaml
141+
yamlBlockMappingKey = { fg = syn.tag },
142+
yamlFlowMappingKey = { fg = syn.tag },
129143
}
130144
end
131145

queries/rust/highlights.scm

+4
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,7 @@
2121

2222
; Make crate/self/super the @keyword color
2323
[(crate) (self) (super)] @keyword
24+
25+
; Capture the ' in lifetimes separately
26+
; TODO: upstream this capture
27+
(lifetime "'" @storageclass.lifetime.punctuation)

0 commit comments

Comments
 (0)