mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 12:27:42 +03:00
Improve llvm highlighting and queries (#1388)
* Improve llvm highlighting and queries The llvm tree-sitter parser was updated to support scopes and more accurate highlighting. * Group highlight expressions better
This commit is contained in:
parent
f1ed042c84
commit
8c29b76bcc
6 changed files with 193 additions and 11 deletions
14
runtime/queries/llvm/locals.scm
Normal file
14
runtime/queries/llvm/locals.scm
Normal file
|
@ -0,0 +1,14 @@
|
|||
; Scopes
|
||||
|
||||
(function_body) @local.scope
|
||||
|
||||
; Definitions
|
||||
|
||||
(argument
|
||||
(value (var (local_var) @local.definition)))
|
||||
|
||||
(instruction
|
||||
(local_var) @local.definition)
|
||||
|
||||
; References
|
||||
(local_var) @local.reference
|
Loading…
Add table
Add a link
Reference in a new issue