mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-07 05:50:04 -04:00
feat!: drop modules, general refactor and cleanup
This commit is contained in:
parent
c13e28f894
commit
2c8f2f2fad
829 changed files with 4905 additions and 8010 deletions
1
runtime/queries/m68k/folds.scm
Normal file
1
runtime/queries/m68k/folds.scm
Normal file
|
|
@ -0,0 +1 @@
|
|||
(element_list) @fold
|
||||
71
runtime/queries/m68k/highlights.scm
Normal file
71
runtime/queries/m68k/highlights.scm
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
(symbol) @variable
|
||||
|
||||
(label name: (symbol) @label)
|
||||
|
||||
[
|
||||
(instruction_mnemonic)
|
||||
(directive_mnemonic)
|
||||
] @function.builtin
|
||||
|
||||
(include (directive_mnemonic) @include)
|
||||
(include_bin (directive_mnemonic) @include)
|
||||
(include_dir (directive_mnemonic) @include)
|
||||
|
||||
|
||||
(size) @attribute
|
||||
|
||||
(macro_definition name: (symbol) @function.macro)
|
||||
(macro_call name: (symbol) @function.macro)
|
||||
|
||||
[
|
||||
(path)
|
||||
(string_literal)
|
||||
] @string
|
||||
|
||||
[
|
||||
(decimal_literal)
|
||||
(hexadecimal_literal)
|
||||
(octal_literal)
|
||||
(binary_literal)
|
||||
] @number
|
||||
|
||||
[
|
||||
(reptn)
|
||||
(carg)
|
||||
(narg)
|
||||
(macro_arg)
|
||||
] @variable.builtin
|
||||
|
||||
[
|
||||
(control_mnemonic)
|
||||
(address_register)
|
||||
(data_register)
|
||||
(float_register)
|
||||
(named_register)
|
||||
] @keyword
|
||||
|
||||
(repeat (control_mnemonic) @repeat)
|
||||
(conditional (control_mnemonic) @conditional)
|
||||
|
||||
(comment) @comment
|
||||
|
||||
[
|
||||
(operator)
|
||||
"="
|
||||
"#"
|
||||
] @operator
|
||||
|
||||
[
|
||||
"."
|
||||
","
|
||||
"/"
|
||||
"-"
|
||||
] @punctuation.delimiter
|
||||
|
||||
[
|
||||
"("
|
||||
")"
|
||||
")+"
|
||||
] @punctuation.bracket
|
||||
|
||||
(section) @namespace
|
||||
2
runtime/queries/m68k/injections.scm
Normal file
2
runtime/queries/m68k/injections.scm
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
((comment) @injection.content
|
||||
(#set! injection.language "comment"))
|
||||
22
runtime/queries/m68k/locals.scm
Normal file
22
runtime/queries/m68k/locals.scm
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
(macro_definition
|
||||
name: (symbol) @definition.macro)
|
||||
|
||||
(symbol_assignment
|
||||
name: (symbol) @definition.var)
|
||||
|
||||
(label
|
||||
name: (symbol) @definition.constant)
|
||||
(symbol_definition
|
||||
name: (symbol) @definition.constant)
|
||||
(offset_definition
|
||||
name: (symbol) @definition.constant)
|
||||
(register_definition
|
||||
name: (symbol) @definition.constant)
|
||||
(register_list_definition
|
||||
name: (symbol) @definition.constant)
|
||||
|
||||
(external_reference
|
||||
symbols: (symbol_list
|
||||
(symbol) @definition.import))
|
||||
|
||||
(symbol) @reference
|
||||
Loading…
Add table
Add a link
Reference in a new issue