tree-sitter-wasm 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (576) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +57 -0
  3. package/index.d.ts +120 -0
  4. package/index.js +48 -0
  5. package/manifest.json +677 -0
  6. package/out/ada/folds.scm +15 -0
  7. package/out/ada/highlights.scm +196 -0
  8. package/out/ada/injections.scm +2 -0
  9. package/out/ada/locals.scm +33 -0
  10. package/out/ada/textobjects.scm +23 -0
  11. package/out/ada/tree-sitter-ada.wasm +0 -0
  12. package/out/angular/folds.scm +1 -0
  13. package/out/angular/highlights.scm +178 -0
  14. package/out/angular/indents.scm +16 -0
  15. package/out/angular/injections.scm +1 -0
  16. package/out/angular/locals.scm +1 -0
  17. package/out/angular/tree-sitter-angular.wasm +0 -0
  18. package/out/arduino/folds.scm +1 -0
  19. package/out/arduino/highlights.scm +48 -0
  20. package/out/arduino/indents.scm +1 -0
  21. package/out/arduino/injections.scm +1 -0
  22. package/out/arduino/locals.scm +1 -0
  23. package/out/arduino/tags.scm +5 -0
  24. package/out/arduino/tree-sitter-arduino.wasm +0 -0
  25. package/out/asm/highlights.scm +66 -0
  26. package/out/asm/injections.scm +5 -0
  27. package/out/asm/tree-sitter-asm.wasm +0 -0
  28. package/out/astro/folds.scm +1 -0
  29. package/out/astro/highlights.scm +12 -0
  30. package/out/astro/indents.scm +1 -0
  31. package/out/astro/injections.scm +27 -0
  32. package/out/astro/locals.scm +1 -0
  33. package/out/astro/tree-sitter-astro.wasm +0 -0
  34. package/out/awk/highlights.scm +122 -0
  35. package/out/awk/injections.scm +17 -0
  36. package/out/awk/tree-sitter-awk.wasm +0 -0
  37. package/out/bash/folds.scm +9 -0
  38. package/out/bash/highlights.scm +56 -0
  39. package/out/bash/indents.scm +32 -0
  40. package/out/bash/injections.scm +90 -0
  41. package/out/bash/locals.scm +14 -0
  42. package/out/bash/tree-sitter-bash.wasm +0 -0
  43. package/out/bibtex/folds.scm +1 -0
  44. package/out/bibtex/highlights.scm +47 -0
  45. package/out/bibtex/indents.scm +8 -0
  46. package/out/bibtex/injections.scm +2 -0
  47. package/out/bibtex/locals.scm +0 -0
  48. package/out/bibtex/tags.scm +0 -0
  49. package/out/bibtex/tree-sitter-bibtex.wasm +0 -0
  50. package/out/c/folds.scm +23 -0
  51. package/out/c/highlights.scm +81 -0
  52. package/out/c/indents.scm +99 -0
  53. package/out/c/injections.scm +128 -0
  54. package/out/c/locals.scm +67 -0
  55. package/out/c/tags.scm +9 -0
  56. package/out/c/tree-sitter-c.wasm +0 -0
  57. package/out/c_sharp/folds.scm +17 -0
  58. package/out/c_sharp/highlights.scm +213 -0
  59. package/out/c_sharp/injections.scm +2 -0
  60. package/out/c_sharp/locals.scm +42 -0
  61. package/out/c_sharp/tags.scm +23 -0
  62. package/out/c_sharp/tree-sitter-c_sharp.wasm +0 -0
  63. package/out/cairo/folds.scm +26 -0
  64. package/out/cairo/highlights.scm +372 -0
  65. package/out/cairo/indents.scm +134 -0
  66. package/out/cairo/injections.scm +3 -0
  67. package/out/cairo/locals.scm +28 -0
  68. package/out/cairo/textobjects.scm +79 -0
  69. package/out/cairo/tree-sitter-cairo.wasm +0 -0
  70. package/out/clojure/folds.scm +2 -0
  71. package/out/clojure/highlights.scm +29 -0
  72. package/out/clojure/injections.scm +2 -0
  73. package/out/clojure/locals.scm +1 -0
  74. package/out/clojure/tree-sitter-clojure.wasm +0 -0
  75. package/out/cmake/folds.scm +8 -0
  76. package/out/cmake/highlights.scm +221 -0
  77. package/out/cmake/indents.scm +26 -0
  78. package/out/cmake/injections.scm +5 -0
  79. package/out/cmake/tree-sitter-cmake.wasm +0 -0
  80. package/out/comment/highlights.scm +49 -0
  81. package/out/comment/tree-sitter-comment.wasm +0 -0
  82. package/out/commonlisp/folds.scm +2 -0
  83. package/out/commonlisp/highlights.scm +314 -0
  84. package/out/commonlisp/injections.scm +5 -0
  85. package/out/commonlisp/locals.scm +109 -0
  86. package/out/commonlisp/tags.scm +122 -0
  87. package/out/commonlisp/tree-sitter-commonlisp.wasm +0 -0
  88. package/out/cpp/folds.scm +14 -0
  89. package/out/cpp/highlights.scm +70 -0
  90. package/out/cpp/indents.scm +8 -0
  91. package/out/cpp/injections.scm +3 -0
  92. package/out/cpp/locals.scm +78 -0
  93. package/out/cpp/tags.scm +15 -0
  94. package/out/cpp/tree-sitter-cpp.wasm +0 -0
  95. package/out/css/folds.scm +10 -0
  96. package/out/css/highlights.scm +76 -0
  97. package/out/css/indents.scm +11 -0
  98. package/out/css/injections.scm +2 -0
  99. package/out/css/tree-sitter-css.wasm +0 -0
  100. package/out/csv/highlights.scm +5 -0
  101. package/out/csv/tree-sitter-csv.wasm +0 -0
  102. package/out/cuda/folds.scm +1 -0
  103. package/out/cuda/highlights.scm +17 -0
  104. package/out/cuda/indents.scm +1 -0
  105. package/out/cuda/injections.scm +1 -0
  106. package/out/cuda/locals.scm +1 -0
  107. package/out/cuda/tree-sitter-cuda.wasm +0 -0
  108. package/out/d/folds.scm +4 -0
  109. package/out/d/helix-highlights.scm +241 -0
  110. package/out/d/helix-indents.scm +17 -0
  111. package/out/d/helix-injections.scm +2 -0
  112. package/out/d/helix-textobjects.scm +9 -0
  113. package/out/d/highlights.scm +259 -0
  114. package/out/d/indents.scm +17 -0
  115. package/out/d/injections.scm +2 -0
  116. package/out/d/locals.scm +79 -0
  117. package/out/d/nova-folds.scm +6 -0
  118. package/out/d/nova-highlights.scm +283 -0
  119. package/out/d/nova-symbols.scm +23 -0
  120. package/out/d/tags.scm +28 -0
  121. package/out/d/textobjects.scm +9 -0
  122. package/out/d/tree-sitter-d.wasm +0 -0
  123. package/out/dart/folds.scm +8 -0
  124. package/out/dart/highlights.scm +224 -0
  125. package/out/dart/indents.scm +49 -0
  126. package/out/dart/injections.scm +2 -0
  127. package/out/dart/locals.scm +32 -0
  128. package/out/dart/tree-sitter-dart.wasm +0 -0
  129. package/out/desktop/folds.scm +1 -0
  130. package/out/desktop/highlights.scm +91 -0
  131. package/out/desktop/injections.scm +8 -0
  132. package/out/desktop/tree-sitter-desktop.wasm +0 -0
  133. package/out/devicetree/folds.scm +1 -0
  134. package/out/devicetree/highlights.scm +78 -0
  135. package/out/devicetree/indents.scm +12 -0
  136. package/out/devicetree/injections.scm +2 -0
  137. package/out/devicetree/locals.scm +4 -0
  138. package/out/devicetree/tree-sitter-devicetree.wasm +0 -0
  139. package/out/diff/folds.scm +5 -0
  140. package/out/diff/highlights.scm +49 -0
  141. package/out/diff/injections.scm +2 -0
  142. package/out/diff/tree-sitter-diff.wasm +0 -0
  143. package/out/dockerfile/highlights.scm +58 -0
  144. package/out/dockerfile/injections.scm +12 -0
  145. package/out/dockerfile/tree-sitter-dockerfile.wasm +0 -0
  146. package/out/dtd/folds.scm +4 -0
  147. package/out/dtd/highlights.scm +148 -0
  148. package/out/dtd/injections.scm +2 -0
  149. package/out/dtd/locals.scm +11 -0
  150. package/out/dtd/tree-sitter-dtd.wasm +0 -0
  151. package/out/editorconfig/folds.scm +1 -0
  152. package/out/editorconfig/highlights.scm +35 -0
  153. package/out/editorconfig/injections.scm +2 -0
  154. package/out/editorconfig/tree-sitter-editorconfig.wasm +0 -0
  155. package/out/elisp/highlights.scm +72 -0
  156. package/out/elisp/tags.scm +5 -0
  157. package/out/elisp/tree-sitter-elisp.wasm +0 -0
  158. package/out/elixir/folds.scm +10 -0
  159. package/out/elixir/highlights.scm +223 -0
  160. package/out/elixir/indents.scm +25 -0
  161. package/out/elixir/injections.scm +55 -0
  162. package/out/elixir/locals.scm +200 -0
  163. package/out/elixir/tags.scm +54 -0
  164. package/out/elixir/tree-sitter-elixir.wasm +0 -0
  165. package/out/elm/folds.scm +14 -0
  166. package/out/elm/highlights.scm +76 -0
  167. package/out/elm/injections.scm +4 -0
  168. package/out/elm/locals.scm +15 -0
  169. package/out/elm/tags.scm +19 -0
  170. package/out/elm/tree-sitter-elm.wasm +0 -0
  171. package/out/embedded_template/highlights.scm +12 -0
  172. package/out/embedded_template/injections-ejs.scm +7 -0
  173. package/out/embedded_template/injections-erb.scm +7 -0
  174. package/out/embedded_template/injections-etlua.scm +7 -0
  175. package/out/embedded_template/injections.scm +7 -0
  176. package/out/embedded_template/tree-sitter-embedded_template.wasm +0 -0
  177. package/out/erlang/folds.scm +9 -0
  178. package/out/erlang/highlights.scm +230 -0
  179. package/out/erlang/injections.scm +2 -0
  180. package/out/erlang/tree-sitter-erlang.wasm +0 -0
  181. package/out/fish/folds.scm +8 -0
  182. package/out/fish/highlights.scm +61 -0
  183. package/out/fish/indents.scm +18 -0
  184. package/out/fish/injections.scm +2 -0
  185. package/out/fish/locals.scm +19 -0
  186. package/out/fish/tree-sitter-fish.wasm +0 -0
  187. package/out/gdscript/folds.scm +26 -0
  188. package/out/gdscript/highlights.scm +635 -0
  189. package/out/gdscript/indents.scm +78 -0
  190. package/out/gdscript/injections.scm +2 -0
  191. package/out/gdscript/locals.scm +121 -0
  192. package/out/gdscript/tree-sitter-gdscript.wasm +0 -0
  193. package/out/gdshader/highlights.scm +256 -0
  194. package/out/gdshader/injections.scm +2 -0
  195. package/out/gdshader/locals.scm +24 -0
  196. package/out/gdshader/tags.scm +13 -0
  197. package/out/gdshader/tree-sitter-gdshader.wasm +0 -0
  198. package/out/git_config/folds.scm +2 -0
  199. package/out/git_config/highlights.scm +28 -0
  200. package/out/git_config/injections.scm +69 -0
  201. package/out/git_config/tree-sitter-git_config.wasm +0 -0
  202. package/out/git_rebase/highlights.scm +36 -0
  203. package/out/git_rebase/injections.scm +8 -0
  204. package/out/git_rebase/tree-sitter-git_rebase.wasm +0 -0
  205. package/out/gitattributes/highlights.scm +52 -0
  206. package/out/gitattributes/injections.scm +2 -0
  207. package/out/gitattributes/locals.scm +8 -0
  208. package/out/gitattributes/tree-sitter-gitattributes.wasm +0 -0
  209. package/out/gitignore/highlights.scm +36 -0
  210. package/out/gitignore/injections.scm +2 -0
  211. package/out/gitignore/tree-sitter-gitignore.wasm +0 -0
  212. package/out/gleam/folds.scm +7 -0
  213. package/out/gleam/highlights.scm +137 -0
  214. package/out/gleam/indents.scm +28 -0
  215. package/out/gleam/injections.scm +3 -0
  216. package/out/gleam/locals.scm +17 -0
  217. package/out/gleam/tags.scm +41 -0
  218. package/out/gleam/tree-sitter-gleam.wasm +0 -0
  219. package/out/glsl/folds.scm +1 -0
  220. package/out/glsl/highlights.scm +115 -0
  221. package/out/glsl/indents.scm +1 -0
  222. package/out/glsl/injections.scm +1 -0
  223. package/out/glsl/locals.scm +1 -0
  224. package/out/glsl/tree-sitter-glsl.wasm +0 -0
  225. package/out/go/folds.scm +19 -0
  226. package/out/go/highlights.scm +123 -0
  227. package/out/go/indents.scm +48 -0
  228. package/out/go/injections.scm +42 -0
  229. package/out/go/locals.scm +88 -0
  230. package/out/go/tags.scm +42 -0
  231. package/out/go/tree-sitter-go.wasm +0 -0
  232. package/out/godot_resource/folds.scm +1 -0
  233. package/out/godot_resource/highlights.scm +49 -0
  234. package/out/godot_resource/injections.scm +2 -0
  235. package/out/godot_resource/locals.scm +1 -0
  236. package/out/godot_resource/tree-sitter-godot_resource.wasm +0 -0
  237. package/out/graphql/highlights.scm +163 -0
  238. package/out/graphql/indents.scm +11 -0
  239. package/out/graphql/injections.scm +2 -0
  240. package/out/graphql/tree-sitter-graphql.wasm +0 -0
  241. package/out/groovy/folds.scm +6 -0
  242. package/out/groovy/highlights.scm +148 -0
  243. package/out/groovy/indents.scm +23 -0
  244. package/out/groovy/injections.scm +5 -0
  245. package/out/groovy/locals.scm +6 -0
  246. package/out/groovy/tree-sitter-groovy.wasm +0 -0
  247. package/out/haskell/folds.scm +6 -0
  248. package/out/haskell/highlights.scm +443 -0
  249. package/out/haskell/injections.scm +76 -0
  250. package/out/haskell/locals.scm +4 -0
  251. package/out/haskell/tree-sitter-haskell.wasm +0 -0
  252. package/out/hcl/folds.scm +6 -0
  253. package/out/hcl/highlights.scm +118 -0
  254. package/out/hcl/indents.scm +16 -0
  255. package/out/hcl/injections.scm +6 -0
  256. package/out/hcl/tree-sitter-hcl.wasm +0 -0
  257. package/out/html/folds.scm +5 -0
  258. package/out/html/highlights.scm +13 -0
  259. package/out/html/indents.scm +1 -0
  260. package/out/html/injections.scm +7 -0
  261. package/out/html/locals.scm +1 -0
  262. package/out/html/tree-sitter-html.wasm +0 -0
  263. package/out/ini/folds.scm +1 -0
  264. package/out/ini/highlights.scm +16 -0
  265. package/out/ini/injections.scm +3 -0
  266. package/out/ini/tree-sitter-ini.wasm +0 -0
  267. package/out/java/folds.scm +8 -0
  268. package/out/java/highlights.scm +149 -0
  269. package/out/java/indents.scm +40 -0
  270. package/out/java/injections.scm +31 -0
  271. package/out/java/locals.scm +100 -0
  272. package/out/java/tags.scm +20 -0
  273. package/out/java/tree-sitter-java.wasm +0 -0
  274. package/out/javascript/folds.scm +1 -0
  275. package/out/javascript/highlights-jsx.scm +8 -0
  276. package/out/javascript/highlights-params.scm +12 -0
  277. package/out/javascript/highlights.scm +204 -0
  278. package/out/javascript/indents.scm +1 -0
  279. package/out/javascript/injections.scm +31 -0
  280. package/out/javascript/locals.scm +23 -0
  281. package/out/javascript/tags.scm +99 -0
  282. package/out/javascript/tree-sitter-javascript.wasm +0 -0
  283. package/out/jq/highlights.scm +158 -0
  284. package/out/jq/injections.scm +23 -0
  285. package/out/jq/locals.scm +10 -0
  286. package/out/jq/tree-sitter-jq.wasm +0 -0
  287. package/out/json/folds.scm +5 -0
  288. package/out/json/highlights.scm +16 -0
  289. package/out/json/indents.scm +11 -0
  290. package/out/json/injections.scm +2 -0
  291. package/out/json/locals.scm +4 -0
  292. package/out/json/tree-sitter-json.wasm +0 -0
  293. package/out/julia/folds.scm +14 -0
  294. package/out/julia/highlights.scm +375 -0
  295. package/out/julia/indents.scm +52 -0
  296. package/out/julia/injections.scm +42 -0
  297. package/out/julia/locals.scm +71 -0
  298. package/out/julia/tree-sitter-julia.wasm +0 -0
  299. package/out/just/folds.scm +6 -0
  300. package/out/just/highlights.scm +139 -0
  301. package/out/just/indents.scm +14 -0
  302. package/out/just/injections.scm +44 -0
  303. package/out/just/locals.scm +35 -0
  304. package/out/just/tree-sitter-just.wasm +0 -0
  305. package/out/kdl/folds.scm +8 -0
  306. package/out/kdl/highlights.scm +58 -0
  307. package/out/kdl/indents.scm +7 -0
  308. package/out/kdl/injections.scm +4 -0
  309. package/out/kdl/locals.scm +10 -0
  310. package/out/kdl/tree-sitter-kdl.wasm +0 -0
  311. package/out/kotlin/folds.scm +13 -0
  312. package/out/kotlin/highlights.scm +380 -0
  313. package/out/kotlin/injections.scm +52 -0
  314. package/out/kotlin/locals.scm +78 -0
  315. package/out/kotlin/tree-sitter-kotlin.wasm +0 -0
  316. package/out/liquid/highlights.scm +119 -0
  317. package/out/liquid/injections.scm +22 -0
  318. package/out/liquid/tree-sitter-liquid.wasm +0 -0
  319. package/out/lua/folds.scm +12 -0
  320. package/out/lua/highlights.scm +201 -0
  321. package/out/lua/indents.scm +47 -0
  322. package/out/lua/injections.scm +12 -0
  323. package/out/lua/locals.scm +32 -0
  324. package/out/lua/tags.scm +36 -0
  325. package/out/lua/tree-sitter-lua.wasm +0 -0
  326. package/out/make/folds.scm +6 -0
  327. package/out/make/highlights.scm +172 -0
  328. package/out/make/injections.scm +5 -0
  329. package/out/make/tree-sitter-make.wasm +0 -0
  330. package/out/markdown/folds.scm +12 -0
  331. package/out/markdown/highlights.scm +52 -0
  332. package/out/markdown/indents.scm +1 -0
  333. package/out/markdown/injections.scm +12 -0
  334. package/out/markdown/tree-sitter-markdown.wasm +0 -0
  335. package/out/markdown_inline/highlights.scm +37 -0
  336. package/out/markdown_inline/injections.scm +2 -0
  337. package/out/markdown_inline/tree-sitter-markdown_inline.wasm +0 -0
  338. package/out/matlab/folds.scm +13 -0
  339. package/out/matlab/highlights.scm +218 -0
  340. package/out/matlab/indents.scm +40 -0
  341. package/out/matlab/injections.scm +2 -0
  342. package/out/matlab/locals.scm +33 -0
  343. package/out/matlab/tree-sitter-matlab.wasm +0 -0
  344. package/out/nginx/folds.scm +1 -0
  345. package/out/nginx/highlights.scm +59 -0
  346. package/out/nginx/injections.scm +2 -0
  347. package/out/nginx/tree-sitter-nginx.wasm +0 -0
  348. package/out/nim/folds.scm +41 -0
  349. package/out/nim/highlights.scm +186 -0
  350. package/out/nim/injections.scm +79 -0
  351. package/out/nim/locals.scm +328 -0
  352. package/out/nim/tree-sitter-nim.wasm +0 -0
  353. package/out/nix/folds.scm +11 -0
  354. package/out/nix/highlights.scm +99 -0
  355. package/out/nix/indents.scm +75 -0
  356. package/out/nix/injections.scm +39 -0
  357. package/out/nix/locals.scm +33 -0
  358. package/out/nix/tags.scm +16 -0
  359. package/out/nix/tree-sitter-nix.wasm +0 -0
  360. package/out/objc/folds.scm +20 -0
  361. package/out/objc/highlights.scm +216 -0
  362. package/out/objc/indents.scm +1 -0
  363. package/out/objc/injections.scm +10 -0
  364. package/out/objc/locals.scm +1 -0
  365. package/out/objc/tree-sitter-objc.wasm +0 -0
  366. package/out/ocaml/folds.scm +30 -0
  367. package/out/ocaml/highlights.scm +148 -0
  368. package/out/ocaml/indents.scm +77 -0
  369. package/out/ocaml/injections.scm +2 -0
  370. package/out/ocaml/locals.scm +24 -0
  371. package/out/ocaml/tags.scm +170 -0
  372. package/out/ocaml/tree-sitter-ocaml.wasm +0 -0
  373. package/out/ocaml_interface/folds.scm +1 -0
  374. package/out/ocaml_interface/highlights.scm +148 -0
  375. package/out/ocaml_interface/indents.scm +1 -0
  376. package/out/ocaml_interface/injections.scm +1 -0
  377. package/out/ocaml_interface/locals.scm +24 -0
  378. package/out/ocaml_interface/tags.scm +170 -0
  379. package/out/ocaml_interface/tree-sitter-ocaml_interface.wasm +0 -0
  380. package/out/ocaml_type/highlights.scm +148 -0
  381. package/out/ocaml_type/locals.scm +24 -0
  382. package/out/ocaml_type/tags.scm +170 -0
  383. package/out/ocaml_type/tree-sitter-ocaml_type.wasm +0 -0
  384. package/out/perl/folds.scm +27 -0
  385. package/out/perl/highlights.scm +162 -0
  386. package/out/perl/injections.scm +14 -0
  387. package/out/perl/matchup.scm +30 -0
  388. package/out/perl/tree-sitter-perl.wasm +0 -0
  389. package/out/php/folds.scm +1 -0
  390. package/out/php/highlights.scm +203 -0
  391. package/out/php/indents.scm +1 -0
  392. package/out/php/injections-text.scm +3 -0
  393. package/out/php/injections.scm +10 -0
  394. package/out/php/locals.scm +1 -0
  395. package/out/php/tags.scm +40 -0
  396. package/out/php/tree-sitter-php.wasm +0 -0
  397. package/out/php_only/folds.scm +19 -0
  398. package/out/php_only/highlights.scm +203 -0
  399. package/out/php_only/indents.scm +68 -0
  400. package/out/php_only/injections-text.scm +3 -0
  401. package/out/php_only/injections.scm +10 -0
  402. package/out/php_only/locals.scm +84 -0
  403. package/out/php_only/tags.scm +40 -0
  404. package/out/php_only/tree-sitter-php_only.wasm +0 -0
  405. package/out/powershell/folds.scm +13 -0
  406. package/out/powershell/highlights.scm +128 -0
  407. package/out/powershell/indents.scm +41 -0
  408. package/out/powershell/injections.scm +27 -0
  409. package/out/powershell/locals.scm +85 -0
  410. package/out/powershell/tree-sitter-powershell.wasm +0 -0
  411. package/out/prisma/folds.scm +7 -0
  412. package/out/prisma/highlights.scm +39 -0
  413. package/out/prisma/injections.scm +5 -0
  414. package/out/prisma/tree-sitter-prisma.wasm +0 -0
  415. package/out/proto/folds.scm +9 -0
  416. package/out/proto/highlights.scm +151 -0
  417. package/out/proto/indents.scm +11 -0
  418. package/out/proto/injections.scm +2 -0
  419. package/out/proto/tree-sitter-proto.wasm +0 -0
  420. package/out/psv/highlights.scm +5 -0
  421. package/out/psv/tree-sitter-psv.wasm +0 -0
  422. package/out/python/folds.scm +28 -0
  423. package/out/python/highlights.scm +137 -0
  424. package/out/python/indents.scm +213 -0
  425. package/out/python/injections.scm +30 -0
  426. package/out/python/locals.scm +124 -0
  427. package/out/python/tags.scm +14 -0
  428. package/out/python/tree-sitter-python.wasm +0 -0
  429. package/out/qmljs/folds.scm +8 -0
  430. package/out/qmljs/highlights.scm +61 -0
  431. package/out/qmljs/injections.scm +1 -0
  432. package/out/qmljs/locals.scm +6 -0
  433. package/out/qmljs/tree-sitter-qmljs.wasm +0 -0
  434. package/out/query/folds.scm +6 -0
  435. package/out/query/highlights.scm +102 -0
  436. package/out/query/indents.scm +25 -0
  437. package/out/query/injections.scm +28 -0
  438. package/out/query/locals.scm +21 -0
  439. package/out/query/tree-sitter-query.wasm +0 -0
  440. package/out/r/highlights.scm +112 -0
  441. package/out/r/indents.scm +33 -0
  442. package/out/r/injections.scm +2 -0
  443. package/out/r/locals.scm +18 -0
  444. package/out/r/tags.scm +21 -0
  445. package/out/r/tree-sitter-r.wasm +0 -0
  446. package/out/racket/folds.scm +2 -0
  447. package/out/racket/highlights.scm +108 -0
  448. package/out/racket/injections.scm +5 -0
  449. package/out/racket/locals.scm +34 -0
  450. package/out/racket/tags.scm +12 -0
  451. package/out/racket/tree-sitter-racket.wasm +0 -0
  452. package/out/regex/highlights.scm +63 -0
  453. package/out/regex/tree-sitter-regex.wasm +0 -0
  454. package/out/requirements/highlights.scm +45 -0
  455. package/out/requirements/injections.scm +2 -0
  456. package/out/requirements/tree-sitter-requirements.wasm +0 -0
  457. package/out/ruby/folds.scm +12 -0
  458. package/out/ruby/highlights.scm +154 -0
  459. package/out/ruby/indents.scm +43 -0
  460. package/out/ruby/injections.scm +34 -0
  461. package/out/ruby/locals.scm +27 -0
  462. package/out/ruby/tags.scm +64 -0
  463. package/out/ruby/tree-sitter-ruby.wasm +0 -0
  464. package/out/rust/folds.scm +25 -0
  465. package/out/rust/highlights.scm +161 -0
  466. package/out/rust/indents.scm +133 -0
  467. package/out/rust/injections.scm +9 -0
  468. package/out/rust/locals.scm +98 -0
  469. package/out/rust/tags.scm +60 -0
  470. package/out/rust/tree-sitter-rust.wasm +0 -0
  471. package/out/scala/folds.scm +16 -0
  472. package/out/scala/highlights.scm +260 -0
  473. package/out/scala/indents.scm +30 -0
  474. package/out/scala/injections.scm +5 -0
  475. package/out/scala/locals.scm +30 -0
  476. package/out/scala/tags.scm +66 -0
  477. package/out/scala/tree-sitter-scala.wasm +0 -0
  478. package/out/scheme/folds.scm +2 -0
  479. package/out/scheme/highlights.scm +84 -0
  480. package/out/scheme/injections.scm +2 -0
  481. package/out/scheme/tree-sitter-scheme.wasm +0 -0
  482. package/out/scss/folds.scm +1 -0
  483. package/out/scss/highlights.scm +69 -0
  484. package/out/scss/indents.scm +7 -0
  485. package/out/scss/injections.scm +2 -0
  486. package/out/scss/tree-sitter-scss.wasm +0 -0
  487. package/out/solidity/folds.scm +20 -0
  488. package/out/solidity/highlights-nvim.scm +309 -0
  489. package/out/solidity/highlights.scm +217 -0
  490. package/out/solidity/injections.scm +14 -0
  491. package/out/solidity/locals.scm +9 -0
  492. package/out/solidity/tags.scm +43 -0
  493. package/out/solidity/tree-sitter-solidity.wasm +0 -0
  494. package/out/sql/folds.scm +1 -0
  495. package/out/sql/highlights.scm +445 -0
  496. package/out/sql/indents.scm +27 -0
  497. package/out/sql/injections.scm +5 -0
  498. package/out/sql/tree-sitter-sql.wasm +0 -0
  499. package/out/ssh_config/folds.scm +4 -0
  500. package/out/ssh_config/highlights.scm +81 -0
  501. package/out/ssh_config/indents.scm +12 -0
  502. package/out/ssh_config/injections.scm +15 -0
  503. package/out/ssh_config/locals.scm +7 -0
  504. package/out/ssh_config/tree-sitter-ssh_config.wasm +0 -0
  505. package/out/swift/folds.scm +35 -0
  506. package/out/swift/highlights.scm +336 -0
  507. package/out/swift/indents.scm +123 -0
  508. package/out/swift/injections.scm +10 -0
  509. package/out/swift/locals.scm +23 -0
  510. package/out/swift/outline.scm +66 -0
  511. package/out/swift/tags.scm +51 -0
  512. package/out/swift/textobjects.scm +19 -0
  513. package/out/swift/tree-sitter-swift.wasm +0 -0
  514. package/out/templ/folds.scm +15 -0
  515. package/out/templ/highlights.scm +60 -0
  516. package/out/templ/injections.scm +13 -0
  517. package/out/templ/tree-sitter-templ.wasm +0 -0
  518. package/out/terraform/folds.scm +1 -0
  519. package/out/terraform/highlights.scm +41 -0
  520. package/out/terraform/indents.scm +1 -0
  521. package/out/terraform/injections.scm +1 -0
  522. package/out/terraform/tree-sitter-terraform.wasm +0 -0
  523. package/out/toml/folds.scm +5 -0
  524. package/out/toml/highlights.scm +53 -0
  525. package/out/toml/indents.scm +11 -0
  526. package/out/toml/injections.scm +2 -0
  527. package/out/toml/locals.scm +4 -0
  528. package/out/toml/tree-sitter-toml.wasm +0 -0
  529. package/out/tsv/highlights.scm +4 -0
  530. package/out/tsv/tree-sitter-tsv.wasm +0 -0
  531. package/out/tsx/folds.scm +1 -0
  532. package/out/tsx/highlights.scm +35 -0
  533. package/out/tsx/indents.scm +1 -0
  534. package/out/tsx/injections.scm +1 -0
  535. package/out/tsx/locals.scm +2 -0
  536. package/out/tsx/tags.scm +23 -0
  537. package/out/tsx/tree-sitter-tsx.wasm +0 -0
  538. package/out/typescript/folds.scm +8 -0
  539. package/out/typescript/highlights.scm +35 -0
  540. package/out/typescript/indents.scm +7 -0
  541. package/out/typescript/injections.scm +28 -0
  542. package/out/typescript/locals.scm +2 -0
  543. package/out/typescript/tags.scm +23 -0
  544. package/out/typescript/tree-sitter-typescript.wasm +0 -0
  545. package/out/vim/folds.scm +4 -0
  546. package/out/vim/highlights.scm +362 -0
  547. package/out/vim/injections.scm +44 -0
  548. package/out/vim/locals.scm +19 -0
  549. package/out/vim/tree-sitter-vim.wasm +0 -0
  550. package/out/vimdoc/highlights.scm +74 -0
  551. package/out/vimdoc/injections.scm +4 -0
  552. package/out/vimdoc/tree-sitter-vimdoc.wasm +0 -0
  553. package/out/vue/folds.scm +6 -0
  554. package/out/vue/highlights.scm +54 -0
  555. package/out/vue/indents.scm +7 -0
  556. package/out/vue/injections.scm +78 -0
  557. package/out/vue/tree-sitter-vue.wasm +0 -0
  558. package/out/xml/folds.scm +5 -0
  559. package/out/xml/highlights.scm +198 -0
  560. package/out/xml/indents.scm +16 -0
  561. package/out/xml/injections.scm +32 -0
  562. package/out/xml/locals.scm +35 -0
  563. package/out/xml/tree-sitter-xml.wasm +0 -0
  564. package/out/yaml/folds.scm +4 -0
  565. package/out/yaml/highlights.scm +79 -0
  566. package/out/yaml/indents.scm +7 -0
  567. package/out/yaml/injections.scm +81 -0
  568. package/out/yaml/locals.scm +9 -0
  569. package/out/yaml/tree-sitter-yaml.wasm +0 -0
  570. package/out/zig/folds.scm +23 -0
  571. package/out/zig/highlights.scm +291 -0
  572. package/out/zig/indents.scm +22 -0
  573. package/out/zig/injections.scm +10 -0
  574. package/out/zig/locals.scm +96 -0
  575. package/out/zig/tree-sitter-zig.wasm +0 -0
  576. package/package.json +152 -0
@@ -0,0 +1,221 @@
1
+ (normal_command
2
+ (identifier)
3
+ (argument_list
4
+ (argument
5
+ (unquoted_argument)) @constant)
6
+ (#lua-match? @constant "^[%u@][%u%d_]+$"))
7
+
8
+ [
9
+ (quoted_argument)
10
+ (bracket_argument)
11
+ ] @string
12
+
13
+ (variable_ref) @none
14
+
15
+ (variable) @variable
16
+
17
+ [
18
+ (bracket_comment)
19
+ (line_comment)
20
+ ] @comment @spell
21
+
22
+ (normal_command
23
+ (identifier) @function)
24
+
25
+ [
26
+ "ENV"
27
+ "CACHE"
28
+ ] @module
29
+
30
+ [
31
+ "$"
32
+ "{"
33
+ "}"
34
+ ] @punctuation.special
35
+
36
+ [
37
+ "("
38
+ ")"
39
+ ] @punctuation.bracket
40
+
41
+ [
42
+ (function)
43
+ (endfunction)
44
+ (macro)
45
+ (endmacro)
46
+ ] @keyword.function
47
+
48
+ [
49
+ (if)
50
+ (elseif)
51
+ (else)
52
+ (endif)
53
+ ] @keyword.conditional
54
+
55
+ [
56
+ (foreach)
57
+ (endforeach)
58
+ (while)
59
+ (endwhile)
60
+ ] @keyword.repeat
61
+
62
+ (normal_command
63
+ (identifier) @keyword.repeat
64
+ (#match? @keyword.repeat "^([cC][oO][nN][tT][iI][nN][uU][eE]|[bB][rR][eE][aA][kK])$"))
65
+
66
+ (normal_command
67
+ (identifier) @keyword.return
68
+ (#match? @keyword.return "^[rR][eE][tT][uU][rR][nN]$"))
69
+
70
+ (function_command
71
+ (function)
72
+ (argument_list
73
+ .
74
+ (argument) @function
75
+ (argument)* @variable.parameter))
76
+
77
+ (macro_command
78
+ (macro)
79
+ (argument_list
80
+ .
81
+ (argument) @function.macro
82
+ (argument)* @variable.parameter))
83
+
84
+ (block_def
85
+ (block_command
86
+ (block) @function.builtin
87
+ (argument_list
88
+ (argument
89
+ (unquoted_argument) @constant
90
+ (#any-of? @constant "SCOPE_FOR" "POLICIES" "VARIABLES" "PROPAGATE")
91
+ )*
92
+ )?
93
+ )
94
+ (endblock_command (endblock) @function.builtin))
95
+
96
+ ((argument) @boolean
97
+ (#match? @boolean "^(1|[oO][nN]|[yY][eE][sS]|[tT][rR][uU][eE]|[yY]|0|[oO][fF][fF]|[nN][oO]|[fF][aA][lL][sS][eE]|[nN]|[iI][gG][nN][oO][rR][eE]|[nN][oO][tT][fF][oO][uU][nN][dD]|.*-[nN][oO][tT][fF][oO][uU][nN][dD])$"))
98
+
99
+ (if_command
100
+ (if)
101
+ (argument_list
102
+ (argument) @keyword.operator)
103
+ (#any-of? @keyword.operator
104
+ "NOT" "AND" "OR" "COMMAND" "POLICY" "TARGET" "TEST" "DEFINED" "IN_LIST" "EXISTS" "IS_NEWER_THAN"
105
+ "IS_DIRECTORY" "IS_SYMLINK" "IS_ABSOLUTE" "MATCHES" "LESS" "GREATER" "EQUAL" "LESS_EQUAL"
106
+ "GREATER_EQUAL" "STRLESS" "STRGREATER" "STREQUAL" "STRLESS_EQUAL" "STRGREATER_EQUAL"
107
+ "VERSION_LESS" "VERSION_GREATER" "VERSION_EQUAL" "VERSION_LESS_EQUAL" "VERSION_GREATER_EQUAL"))
108
+
109
+ (elseif_command
110
+ (elseif)
111
+ (argument_list
112
+ (argument) @keyword.operator)
113
+ (#any-of? @keyword.operator
114
+ "NOT" "AND" "OR" "COMMAND" "POLICY" "TARGET" "TEST" "DEFINED" "IN_LIST" "EXISTS" "IS_NEWER_THAN"
115
+ "IS_DIRECTORY" "IS_SYMLINK" "IS_ABSOLUTE" "MATCHES" "LESS" "GREATER" "EQUAL" "LESS_EQUAL"
116
+ "GREATER_EQUAL" "STRLESS" "STRGREATER" "STREQUAL" "STRLESS_EQUAL" "STRGREATER_EQUAL"
117
+ "VERSION_LESS" "VERSION_GREATER" "VERSION_EQUAL" "VERSION_LESS_EQUAL" "VERSION_GREATER_EQUAL"))
118
+
119
+ (normal_command
120
+ (identifier) @function.builtin
121
+ (#match? @function.builtin
122
+ "^([cC][mM][aA][kK][eE]_[hH][oO][sS][tT]_[sS][yY][sS][tT][eE][mM]_[iI][nN][fF][oO][rR][mM][aA][tT][iI][oO][nN]|[cC][mM][aA][kK][eE]_[lL][aA][nN][gG][uU][aA][gG][eE]|[cC][mM][aA][kK][eE]_[mM][iI][nN][iI][mM][uU][mM]_[rR][eE][qQ][uU][iI][rR][eE][dD]|[cC][mM][aA][kK][eE]_[pP][aA][rR][sS][eE]_[aA][rR][gG][uU][mM][eE][nN][tT][sS]|[cC][mM][aA][kK][eE]_[pP][aA][tT][hH]|[cC][mM][aA][kK][eE]_[pP][oO][lL][iI][cC][yY]|[cC][oO][nN][fF][iI][gG][uU][rR][eE]_[fF][iI][lL][eE]|[eE][xX][eE][cC][uU][tT][eE]_[pP][rR][oO][cC][eE][sS][sS]|[fF][iI][lL][eE]|[fF][iI][nN][dD]_[fF][iI][lL][eE]|[fF][iI][nN][dD]_[lL][iI][bB][rR][aA][rR][yY]|[fF][iI][nN][dD]_[pP][aA][cC][kK][aA][gG][eE]|[fF][iI][nN][dD]_[pP][aA][tT][hH]|[fF][iI][nN][dD]_[pP][rR][oO][gG][rR][aA][mM]|[fF][oO][rR][eE][aA][cC][hH]|[gG][eE][tT]_[cC][mM][aA][kK][eE]_[pP][rR][oO][pP][eE][rR][tT][yY]|[gG][eE][tT]_[dD][iI][rR][eE][cC][tT][oO][rR][yY]_[pP][rR][oO][pP][eE][rR][tT][yY]|[gG][eE][tT]_[fF][iI][lL][eE][nN][aA][mM][eE]_[cC][oO][mM][pP][oO][nN][eE][nN][tT]|[gG][eE][tT]_[pP][rR][oO][pP][eE][rR][tT][yY]|[iI][nN][cC][lL][uU][dD][eE]|[iI][nN][cC][lL][uU][dD][eE]_[gG][uU][aA][rR][dD]|[lL][iI][sS][tT]|[mM][aA][cC][rR][oO]|[mM][aA][rR][kK]_[aA][sS]_[aA][dD][vV][aA][nN][cC][eE][dD]|[mM][aA][tT][hH]|[mM][eE][sS][sS][aA][gG][eE]|[oO][pP][tT][iI][oO][nN]|[sS][eE][pP][aA][rR][aA][tT][eE]_[aA][rR][gG][uU][mM][eE][nN][tT][sS]|[sS][eE][tT]|[sS][eE][tT]_[dD][iI][rR][eE][cC][tT][oO][rR][yY]_[pP][rR][oO][pP][eE][rR][tT][iI][eE][sS]|[sS][eE][tT]_[pP][rR][oO][pP][eE][rR][tT][yY]|[sS][iI][tT][eE]_[nN][aA][mM][eE]|[sS][tT][rR][iI][nN][gG]|[uU][nN][sS][eE][tT]|[vV][aA][rR][iI][aA][bB][lL][eE]_[wW][aA][tT][cC][hH]|[aA][dD][dD]_[cC][oO][mM][pP][iI][lL][eE]_[dD][eE][fF][iI][nN][iI][tT][iI][oO][nN][sS]|[aA][dD][dD]_[cC][oO][mM][pP][iI][lL][eE]_[oO][pP][tT][iI][oO][nN][sS]|[aA][dD][dD]_[cC][uU][sS][tT][oO][mM]_[cC][oO][mM][mM][aA][nN][dD]|[aA][dD][dD]_[cC][uU][sS][tT][oO][mM]_[tT][aA][rR][gG][eE][tT]|[aA][dD][dD]_[dD][eE][fF][iI][nN][iI][tT][iI][oO][nN][sS]|[aA][dD][dD]_[dD][eE][pP][eE][nN][dD][eE][nN][cC][iI][eE][sS]|[aA][dD][dD]_[eE][xX][eE][cC][uU][tT][aA][bB][lL][eE]|[aA][dD][dD]_[lL][iI][bB][rR][aA][rR][yY]|[aA][dD][dD]_[lL][iI][nN][kK]_[oO][pP][tT][iI][oO][nN][sS]|[aA][dD][dD]_[sS][uU][bB][dD][iI][rR][eE][cC][tT][oO][rR][yY]|[aA][dD][dD]_[tT][eE][sS][tT]|[aA][uU][xX]_[sS][oO][uU][rR][cC][eE]_[dD][iI][rR][eE][cC][tT][oO][rR][yY]|[bB][uU][iI][lL][dD]_[cC][oO][mM][mM][aA][nN][dD]|[cC][rR][eE][aA][tT][eE]_[tT][eE][sS][tT]_[sS][oO][uU][rR][cC][eE][lL][iI][sS][tT]|[dD][eE][fF][iI][nN][eE]_[pP][rR][oO][pP][eE][rR][tT][yY]|[eE][nN][aA][bB][lL][eE]_[lL][aA][nN][gG][uU][aA][gG][eE]|[eE][nN][aA][bB][lL][eE]_[tT][eE][sS][tT][iI][nN][gG]|[eE][xX][pP][oO][rR][tT]|[fF][lL][tT][kK]_[wW][rR][aA][pP]_[uU][iI]|[gG][eE][tT]_[sS][oO][uU][rR][cC][eE]_[fF][iI][lL][eE]_[pP][rR][oO][pP][eE][rR][tT][yY]|[gG][eE][tT]_[tT][aA][rR][gG][eE][tT]_[pP][rR][oO][pP][eE][rR][tT][yY]|[gG][eE][tT]_[tT][eE][sS][tT]_[pP][rR][oO][pP][eE][rR][tT][yY]|[iI][nN][cC][lL][uU][dD][eE]_[dD][iI][rR][eE][cC][tT][oO][rR][iI][eE][sS]|[iI][nN][cC][lL][uU][dD][eE]_[eE][xX][tT][eE][rR][nN][aA][lL]_[mM][sS][pP][rR][oO][jJ][eE][cC][tT]|[iI][nN][cC][lL][uU][dD][eE]_[rR][eE][gG][uU][lL][aA][rR]_[eE][xX][pP][rR][eE][sS][sS][iI][oO][nN]|[iI][nN][sS][tT][aA][lL][lL]|[lL][iI][nN][kK]_[dD][iI][rR][eE][cC][tT][oO][rR][iI][eE][sS]|[lL][iI][nN][kK]_[lL][iI][bB][rR][aA][rR][iI][eE][sS]|[lL][oO][aA][dD]_[cC][aA][cC][hH][eE]|[pP][rR][oO][jJ][eE][cC][tT]|[rR][eE][mM][oO][vV][eE]_[dD][eE][fF][iI][nN][iI][tT][iI][oO][nN][sS]|[sS][eE][tT]_[sS][oO][uU][rR][cC][eE]_[fF][iI][lL][eE][sS]_[pP][rR][oO][pP][eE][rR][tT][iI][eE][sS]|[sS][eE][tT]_[tT][aA][rR][gG][eE][tT]_[pP][rR][oO][pP][eE][rR][tT][iI][eE][sS]|[sS][eE][tT]_[tT][eE][sS][tT][sS]_[pP][rR][oO][pP][eE][rR][tT][iI][eE][sS]|[sS][oO][uU][rR][cC][eE]_[gG][rR][oO][uU][pP]|[tT][aA][rR][gG][eE][tT]_[cC][oO][mM][pP][iI][lL][eE]_[dD][eE][fF][iI][nN][iI][tT][iI][oO][nN][sS]|[tT][aA][rR][gG][eE][tT]_[cC][oO][mM][pP][iI][lL][eE]_[fF][eE][aA][tT][uU][rR][eE][sS]|[tT][aA][rR][gG][eE][tT]_[cC][oO][mM][pP][iI][lL][eE]_[oO][pP][tT][iI][oO][nN][sS]|[tT][aA][rR][gG][eE][tT]_[iI][nN][cC][lL][uU][dD][eE]_[dD][iI][rR][eE][cC][tT][oO][rR][iI][eE][sS]|[tT][aA][rR][gG][eE][tT]_[lL][iI][nN][kK]_[dD][iI][rR][eE][cC][tT][oO][rR][iI][eE][sS]|[tT][aA][rR][gG][eE][tT]_[lL][iI][nN][kK]_[lL][iI][bB][rR][aA][rR][iI][eE][sS]|[tT][aA][rR][gG][eE][tT]_[lL][iI][nN][kK]_[oO][pP][tT][iI][oO][nN][sS]|[tT][aA][rR][gG][eE][tT]_[pP][rR][eE][cC][oO][mM][pP][iI][lL][eE]_[hH][eE][aA][dD][eE][rR][sS]|[tT][aA][rR][gG][eE][tT]_[sS][oO][uU][rR][cC][eE][sS]|[tT][rR][yY]_[cC][oO][mM][pP][iI][lL][eE]|[tT][rR][yY]_[rR][uU][nN]|[cC][tT][eE][sS][tT]_[bB][uU][iI][lL][dD]|[cC][tT][eE][sS][tT]_[cC][oO][nN][fF][iI][gG][uU][rR][eE]|[cC][tT][eE][sS][tT]_[cC][oO][vV][eE][rR][aA][gG][eE]|[cC][tT][eE][sS][tT]_[eE][mM][pP][tT][yY]_[bB][iI][nN][aA][rR][yY]_[dD][iI][rR][eE][cC][tT][oO][rR][yY]|[cC][tT][eE][sS][tT]_[mM][eE][mM][cC][hH][eE][cC][kK]|[cC][tT][eE][sS][tT]_[rR][eE][aA][dD]_[cC][uU][sS][tT][oO][mM]_[fF][iI][lL][eE][sS]|[cC][tT][eE][sS][tT]_[rR][uU][nN]_[sS][cC][rR][iI][pP][tT]|[cC][tT][eE][sS][tT]_[sS][lL][eE][eE][pP]|[cC][tT][eE][sS][tT]_[sS][tT][aA][rR][tT]|[cC][tT][eE][sS][tT]_[sS][uU][bB][mM][iI][tT]|[cC][tT][eE][sS][tT]_[tT][eE][sS][tT]|[cC][tT][eE][sS][tT]_[uU][pP][dD][aA][tT][eE]|[cC][tT][eE][sS][tT]_[uU][pP][lL][oO][aA][dD])$"))
123
+
124
+ (normal_command
125
+ (identifier) @_function
126
+ (argument_list
127
+ .
128
+ (argument) @variable)
129
+ (#match? @_function "^[sS][eE][tT]$"))
130
+
131
+ (normal_command
132
+ (identifier) @_function
133
+ (#match? @_function "^[sS][eE][tT]$")
134
+ (argument_list
135
+ .
136
+ (argument)
137
+ ((argument) @_cache @keyword.modifier
138
+ .
139
+ (argument) @_type @type
140
+ (#any-of? @_cache "CACHE")
141
+ (#any-of? @_type "BOOL" "FILEPATH" "PATH" "STRING" "INTERNAL"))))
142
+
143
+ (normal_command
144
+ (identifier) @_function
145
+ (#match? @_function "^[uU][nN][sS][eE][tT]$")
146
+ (argument_list
147
+ .
148
+ (argument)
149
+ (argument) @keyword.modifier
150
+ (#any-of? @keyword.modifier "CACHE" "PARENT_SCOPE")))
151
+
152
+ (normal_command
153
+ (identifier) @_function
154
+ (#match? @_function "^[lL][iI][sS][tT]$")
155
+ (argument_list
156
+ .
157
+ (argument) @constant
158
+ (#any-of? @constant "LENGTH" "GET" "JOIN" "SUBLIST" "FIND")
159
+ .
160
+ (argument) @variable
161
+ (argument) @variable .))
162
+
163
+ (normal_command
164
+ (identifier) @_function
165
+ (#match? @_function "^[lL][iI][sS][tT]$")
166
+ (argument_list
167
+ .
168
+ (argument) @constant
169
+ .
170
+ (argument) @variable
171
+ (#any-of? @constant
172
+ "APPEND" "FILTER" "INSERT" "POP_BACK" "POP_FRONT" "PREPEND" "REMOVE_ITEM" "REMOVE_AT"
173
+ "REMOVE_DUPLICATES" "REVERSE" "SORT")))
174
+
175
+ (normal_command
176
+ (identifier) @_function
177
+ (#match? @_function "^[lL][iI][sS][tT]$")
178
+ (argument_list
179
+ .
180
+ (argument) @_transform @constant
181
+ .
182
+ (argument) @variable
183
+ .
184
+ (argument) @_action @constant
185
+ (#eq? @_transform "TRANSFORM")
186
+ (#any-of? @_action "APPEND" "PREPEND" "TOUPPER" "TOLOWER" "STRIP" "GENEX_STRIP" "REPLACE")))
187
+
188
+ (normal_command
189
+ (identifier) @_function
190
+ (#match? @_function "^[lL][iI][sS][tT]$")
191
+ (argument_list
192
+ .
193
+ (argument) @_transform @constant
194
+ .
195
+ (argument) @variable
196
+ .
197
+ (argument) @_action @constant
198
+ .
199
+ (argument)? @_selector @constant
200
+ (#eq? @_transform "TRANSFORM")
201
+ (#any-of? @_action "APPEND" "PREPEND" "TOUPPER" "TOLOWER" "STRIP" "GENEX_STRIP" "REPLACE")
202
+ (#any-of? @_selector "AT" "FOR" "REGEX")))
203
+
204
+ (normal_command
205
+ (identifier) @_function
206
+ (#match? @_function "^[lL][iI][sS][tT]$")
207
+ (argument_list
208
+ .
209
+ (argument) @_transform @constant
210
+ (argument) @constant
211
+ .
212
+ (argument) @variable
213
+ (#eq? @_transform "TRANSFORM")
214
+ (#eq? @constant "OUTPUT_VARIABLE")))
215
+
216
+ (escape_sequence) @string.escape
217
+
218
+ ((source_file
219
+ .
220
+ (line_comment) @keyword.directive @nospell)
221
+ (#lua-match? @keyword.directive "^#!/"))
@@ -0,0 +1,26 @@
1
+ [
2
+ (normal_command)
3
+ (if_condition)
4
+ (foreach_loop)
5
+ (while_loop)
6
+ (function_def)
7
+ (macro_def)
8
+ (block_def)
9
+ ] @indent.begin
10
+
11
+ [
12
+ (elseif_command)
13
+ (else_command)
14
+ (endif_command)
15
+ (endforeach_command)
16
+ (endwhile_command)
17
+ (endfunction_command)
18
+ (endmacro_command)
19
+ (endblock_command)
20
+ ] @indent.branch
21
+
22
+ ")" @indent.branch
23
+
24
+ ")" @indent.end
25
+
26
+ (argument_list) @indent.auto
@@ -0,0 +1,5 @@
1
+ ([
2
+ (bracket_comment)
3
+ (line_comment)
4
+ ] @injection.content
5
+ (#set! injection.language "comment"))
Binary file
@@ -0,0 +1,49 @@
1
+ ((tag
2
+ (name) @comment.todo @nospell
3
+ ("(" @punctuation.bracket
4
+ (user) @constant
5
+ ")" @punctuation.bracket)?
6
+ ":" @punctuation.delimiter)
7
+ (#any-of? @comment.todo "TODO" "WIP"))
8
+
9
+ ("text" @comment.todo @nospell
10
+ (#any-of? @comment.todo "TODO" "WIP"))
11
+
12
+ ((tag
13
+ (name) @comment.note @nospell
14
+ ("(" @punctuation.bracket
15
+ (user) @constant
16
+ ")" @punctuation.bracket)?
17
+ ":" @punctuation.delimiter)
18
+ (#any-of? @comment.note "NOTE" "XXX" "INFO" "DOCS" "PERF" "TEST"))
19
+
20
+ ("text" @comment.note @nospell
21
+ (#any-of? @comment.note "NOTE" "XXX" "INFO" "DOCS" "PERF" "TEST"))
22
+
23
+ ((tag
24
+ (name) @comment.warning @nospell
25
+ ("(" @punctuation.bracket
26
+ (user) @constant
27
+ ")" @punctuation.bracket)?
28
+ ":" @punctuation.delimiter)
29
+ (#any-of? @comment.warning "HACK" "WARNING" "WARN" "FIX"))
30
+
31
+ ("text" @comment.warning @nospell
32
+ (#any-of? @comment.warning "HACK" "WARNING" "WARN" "FIX"))
33
+
34
+ ((tag
35
+ (name) @comment.error @nospell
36
+ ("(" @punctuation.bracket
37
+ (user) @constant
38
+ ")" @punctuation.bracket)?
39
+ ":" @punctuation.delimiter)
40
+ (#any-of? @comment.error "FIXME" "BUG" "ERROR"))
41
+
42
+ ("text" @comment.error @nospell
43
+ (#any-of? @comment.error "FIXME" "BUG" "ERROR"))
44
+
45
+ ; Issue number (#123)
46
+ ("text" @number
47
+ (#lua-match? @number "^#[0-9]+$"))
48
+
49
+ (uri) @string.special.url @nospell
@@ -0,0 +1,2 @@
1
+ (source
2
+ (list_lit) @fold)
@@ -0,0 +1,314 @@
1
+ (sym_lit) @variable
2
+
3
+ ; A highlighting for functions/macros in th cl namespace is available in theHamsta/nvim-treesitter-commonlisp
4
+ ;(list_lit . (sym_lit) @function.builtin (#cl-standard-function? @function.builtin))
5
+ ;(list_lit . (sym_lit) @function.builtin (#cl-standard-macro? @function.macro))
6
+ (dis_expr) @comment
7
+
8
+ (defun_keyword) @function.macro
9
+
10
+ (defun_header
11
+ function_name: (_) @function)
12
+
13
+ (defun_header
14
+ lambda_list: (list_lit
15
+ (sym_lit) @variable.parameter))
16
+
17
+ (defun_header
18
+ keyword: (defun_keyword
19
+ "defmethod")
20
+ lambda_list: (list_lit
21
+ (list_lit
22
+ .
23
+ (sym_lit)
24
+ .
25
+ (sym_lit) @string.special.symbol)))
26
+
27
+ (defun_header
28
+ lambda_list: (list_lit
29
+ (list_lit
30
+ .
31
+ (sym_lit) @variable.parameter
32
+ .
33
+ (_))))
34
+
35
+ (defun_header
36
+ specifier: (sym_lit) @string.special.symbol)
37
+
38
+ [
39
+ ":"
40
+ "::"
41
+ "."
42
+ ] @punctuation.special
43
+
44
+ [
45
+ (accumulation_verb)
46
+ (for_clause_word)
47
+ "for"
48
+ "and"
49
+ "finally"
50
+ "thereis"
51
+ "always"
52
+ "when"
53
+ "if"
54
+ "unless"
55
+ "else"
56
+ "do"
57
+ "loop"
58
+ "below"
59
+ "in"
60
+ "from"
61
+ "across"
62
+ "repeat"
63
+ "being"
64
+ "into"
65
+ "with"
66
+ "as"
67
+ "while"
68
+ "until"
69
+ "return"
70
+ "initially"
71
+ ] @function.macro
72
+
73
+ "=" @operator
74
+
75
+ (include_reader_macro) @string.special.symbol
76
+
77
+ [
78
+ "#C"
79
+ "#c"
80
+ ] @number
81
+
82
+ [
83
+ (kwd_lit)
84
+ (self_referential_reader_macro)
85
+ ] @string.special.symbol
86
+
87
+ (package_lit
88
+ package: (_) @module)
89
+
90
+ "cl" @module
91
+
92
+ (str_lit) @string
93
+
94
+ (num_lit) @number
95
+
96
+ ((sym_lit) @boolean
97
+ (#any-of? @boolean "t" "T"))
98
+
99
+ (nil_lit) @constant.builtin
100
+
101
+ (comment) @comment @spell
102
+
103
+ ; dynamic variables
104
+ ((sym_lit) @variable.builtin
105
+ (#lua-match? @variable.builtin "^[*].+[*]$"))
106
+
107
+ ; quote
108
+ (format_specifier) @string.escape
109
+
110
+ (quoting_lit
111
+ "'" @string.escape)
112
+
113
+ (syn_quoting_lit
114
+ "`" @string.escape)
115
+
116
+ (unquoting_lit
117
+ "," @string.escape)
118
+
119
+ (unquote_splicing_lit
120
+ ",@" @string.escape)
121
+
122
+ [
123
+ "("
124
+ ")"
125
+ ] @punctuation.bracket
126
+
127
+ (block_comment) @comment @spell
128
+
129
+ (with_clause
130
+ type: (_) @type)
131
+
132
+ (for_clause
133
+ type: (_) @type)
134
+
135
+ ; defun-like things
136
+ (list_lit
137
+ .
138
+ (sym_lit) @function.macro
139
+ .
140
+ (sym_lit) @function
141
+ (#eq? @function.macro "deftest"))
142
+
143
+ ; Macros and Special Operators
144
+ (list_lit
145
+ .
146
+ (sym_lit) @function.macro
147
+ ; Generated via https://github.com/theHamsta/nvim-treesitter-commonlisp/blob/22fdc9fd6ed594176cc7299cc6f68dd21c94c63b/scripts/generate-symbols.lisp#L1-L21
148
+ (#any-of? @function.macro
149
+ "do*" "step" "handler-bind" "decf" "prog1" "destructuring-bind" "defconstant" "do" "lambda"
150
+ "with-standard-io-syntax" "case" "restart-bind" "ignore-errors" "with-slots" "prog2" "defclass"
151
+ "define-condition" "print-unreadable-object" "defvar" "when" "with-open-file" "prog" "incf"
152
+ "declaim" "and" "loop-finish" "multiple-value-bind" "pop" "psetf" "defmacro" "with-open-stream"
153
+ "define-modify-macro" "defsetf" "formatter" "call-method" "handler-case" "pushnew" "or"
154
+ "with-hash-table-iterator" "ecase" "cond" "defun" "remf" "ccase" "define-compiler-macro"
155
+ "dotimes" "multiple-value-list" "assert" "deftype" "with-accessors" "trace"
156
+ "with-simple-restart" "do-symbols" "nth-value" "define-symbol-macro" "psetq" "rotatef" "dolist"
157
+ "check-type" "multiple-value-setq" "push" "pprint-pop" "loop" "define-setf-expander"
158
+ "pprint-exit-if-list-exhausted" "with-condition-restarts" "defstruct" "with-input-from-string"
159
+ "with-compilation-unit" "defgeneric" "with-output-to-string" "untrace" "defparameter"
160
+ "ctypecase" "do-external-symbols" "etypecase" "do-all-symbols" "with-package-iterator" "unless"
161
+ "defmethod" "in-package" "defpackage" "return" "typecase" "shiftf" "setf" "pprint-logical-block"
162
+ "time" "restart-case" "prog*" "define-method-combination" "optimize"))
163
+
164
+ ; constant
165
+ ((sym_lit) @constant
166
+ (#lua-match? @constant "^[+].+[+]$"))
167
+
168
+ (var_quoting_lit
169
+ marker: "#'" @string.special.symbol
170
+ value: (_) @string.special.symbol)
171
+
172
+ [
173
+ "#"
174
+ "#p"
175
+ "#P"
176
+ ] @string.special.symbol
177
+
178
+ (list_lit
179
+ .
180
+ (sym_lit) @function.builtin
181
+ ; Generated via https://github.com/theHamsta/nvim-treesitter-commonlisp/blob/22fdc9fd6ed594176cc7299cc6f68dd21c94c63b/scripts/generate-symbols.lisp#L1-L21
182
+ (#any-of? @function.builtin
183
+ "apropos-list" "subst" "substitute" "pprint-linear" "file-namestring" "write-char" "do*"
184
+ "slot-exists-p" "file-author" "macro-function" "rassoc" "make-echo-stream"
185
+ "arithmetic-error-operation" "position-if-not" "list" "cdadr" "lisp-implementation-type"
186
+ "vector-push" "let" "length" "string-upcase" "adjoin" "digit-char" "step" "member-if"
187
+ "handler-bind" "lognot" "apply" "gcd" "slot-unbound" "stringp" "values-list" "stable-sort"
188
+ "decode-float" "make-list" "rplaca" "isqrt" "export" "synonym-stream-symbol" "function-keywords"
189
+ "replace" "tanh" "maphash" "code-char" "decf" "array-displacement" "string-not-lessp"
190
+ "slot-value" "remove-if" "cell-error-name" "vectorp" "cdddar" "two-way-stream-output-stream"
191
+ "parse-integer" "get-internal-real-time" "fourth" "make-string" "slot-missing" "byte-size"
192
+ "string-trim" "nstring-downcase" "cdaddr" "<" "labels" "interactive-stream-p" "fifth" "max"
193
+ "logxor" "pathname-name" "function" "realp" "eql" "logand" "short-site-name" "prog1"
194
+ "user-homedir-pathname" "list-all-packages" "exp" "cadar" "read-char-no-hang"
195
+ "package-error-package" "stream-external-format" "bit-andc2" "nsubstitute-if" "mapcar"
196
+ "complement" "load-logical-pathname-translations" "pprint-newline" "oddp" "caaar"
197
+ "destructuring-bind" "copy-alist" "acos" "go" "bit-nor" "defconstant" "fceiling" "tenth"
198
+ "nreverse" "=" "nunion" "slot-boundp" "string>" "count-if" "atom" "char=" "random-state-p"
199
+ "row-major-aref" "bit-andc1" "translate-pathname" "simple-vector-p" "coerce" "substitute-if-not"
200
+ "zerop" "invalid-method-error" "compile" "realpart" "remove-if-not" "pprint-tab"
201
+ "hash-table-rehash-threshold" "invoke-restart" "if" "count" "/=" "do" "initialize-instance"
202
+ "abs" "schar" "simple-condition-format-control" "delete-package" "subst-if" "lambda"
203
+ "hash-table-count" "array-has-fill-pointer-p" "bit" "with-standard-io-syntax" "parse-namestring"
204
+ "proclaim" "array-in-bounds-p" "multiple-value-call" "rplacd" "some" "graphic-char-p"
205
+ "read-from-string" "consp" "cadaar" "acons" "every" "make-pathname" "mask-field" "case"
206
+ "set-macro-character" "bit-and" "restart-bind" "echo-stream-input-stream" "compile-file"
207
+ "fill-pointer" "numberp" "acosh" "array-dimensions" "documentation" "minusp" "inspect"
208
+ "copy-structure" "integer-length" "ensure-generic-function" "char>=" "quote" "lognor"
209
+ "make-two-way-stream" "ignore-errors" "tailp" "with-slots" "fboundp"
210
+ "logical-pathname-translations" "equal" "float-sign" "shadow" "sleep" "numerator" "prog2" "getf"
211
+ "ldb-test" "round" "locally" "echo-stream-output-stream" "log" "get-macro-character"
212
+ "alphanumericp" "find-method" "nintersection" "defclass" "define-condition"
213
+ "print-unreadable-object" "defvar" "broadcast-stream-streams" "floatp" "subst-if-not" "integerp"
214
+ "translate-logical-pathname" "subsetp" "when" "write-string" "with-open-file" "clrhash"
215
+ "apropos" "intern" "min" "string-greaterp" "import" "nset-difference" "prog" "incf"
216
+ "both-case-p" "multiple-value-prog1" "characterp" "streamp" "digit-char-p" "random"
217
+ "string-lessp" "make-string-input-stream" "copy-symbol" "read-sequence" "logcount" "bit-not"
218
+ "boundp" "encode-universal-time" "third" "declaim" "map" "cons" "set-syntax-from-char" "and"
219
+ "cis" "symbol-plist" "loop-finish" "standard-char-p" "multiple-value-bind" "asin" "string" "pop"
220
+ "complex" "fdefinition" "psetf" "type-error-datum" "output-stream-p" "floor" "write-line" "<="
221
+ "defmacro" "rational" "hash-table-test" "with-open-stream" "read-char" "string-capitalize"
222
+ "get-properties" "y-or-n-p" "use-package" "remove" "compiler-macro-function" "read"
223
+ "package-nicknames" "remove-duplicates" "make-load-form-saving-slots" "dribble"
224
+ "define-modify-macro" "make-dispatch-macro-character" "close" "cosh" "open" "finish-output"
225
+ "string-downcase" "car" "nstring-capitalize" "software-type" "read-preserving-whitespace" "cadr"
226
+ "fround" "nsublis" "defsetf" "find-all-symbols" "char>" "no-applicable-method"
227
+ "compute-restarts" "pathname" "bit-orc2" "write-sequence" "pprint-tabular" "symbol-value"
228
+ "char-name" "get-decoded-time" "formatter" "bit-vector-p" "intersection" "pathname-type"
229
+ "clear-input" "call-method" "princ-to-string" "symbolp" "make-load-form" "nsubst"
230
+ "pprint-dispatch" "handler-case" "method-combination-error" "probe-file" "atan" "string<"
231
+ "type-error-expected-type" "pushnew" "unread-char" "print" "or" "with-hash-table-iterator"
232
+ "make-sequence" "ecase" "unwind-protect" "require" "sixth" "get-dispatch-macro-character"
233
+ "char-not-lessp" "read-byte" "tagbody" "file-error-pathname" "catch" "rationalp" "char-downcase"
234
+ "char-int" "array-rank" "cond" "last" "make-string-output-stream" "array-dimension"
235
+ "host-namestring" "input-stream-p" "decode-universal-time" "defun" "eval-when" "char-code"
236
+ "pathname-directory" "evenp" "subseq" "pprint" "ftruncate" "make-instance" "pathname-host"
237
+ "logbitp" "remf" "1+" "copy-pprint-dispatch" "char-upcase" "error" "read-line" "second"
238
+ "make-package" "directory" "special-operator-p" "open-stream-p" "rassoc-if-not" "ccase" "equalp"
239
+ "substitute-if" "*" "char/=" "cdr" "sqrt" "lcm" "logical-pathname" "eval"
240
+ "define-compiler-macro" "nsubstitute-if-not" "mapcon" "imagpart" "set-exclusive-or"
241
+ "simple-condition-format-arguments" "expt" "concatenate" "file-position" "macrolet" "keywordp"
242
+ "hash-table-rehash-size" "+" "eighth" "use-value" "char-equal" "bit-xor" "format" "byte"
243
+ "dotimes" "namestring" "char-not-equal" "multiple-value-list" "assert" "append" "notany" "typep"
244
+ "delete-file" "makunbound" "cdaar" "file-write-date" ">" "cdddr" "write-to-string" "funcall"
245
+ "member-if-not" "deftype" "readtable-case" "with-accessors" "truename" "constantp" "rassoc-if"
246
+ "caaadr" "tree-equal" "nset-exclusive-or" "nsubstitute" "make-instances-obsolete"
247
+ "package-use-list" "invoke-debugger" "provide" "count-if-not" "trace" "logandc1" "nthcdr"
248
+ "char<=" "functionp" "with-simple-restart" "set-dispatch-macro-character" "logorc2" "unexport"
249
+ "rest" "unbound-slot-instance" "make-hash-table" "hash-table-p" "reinitialize-instance" "nth"
250
+ "do-symbols" "nreconc" "macroexpand" "store-value" "float-precision" "remprop" "nth-value"
251
+ "define-symbol-macro" "update-instance-for-redefined-class" "identity" "progv" "progn"
252
+ "return-from" "readtablep" "rem" "symbol-name" "psetq" "wild-pathname-p" "char" "list*" "char<"
253
+ "plusp" "pairlis" "cddar" "pprint-indent" "union" "compiled-function-p" "rotatef" "abort"
254
+ "machine-type" "concatenated-stream-streams" "string-right-trim" "enough-namestring"
255
+ "arithmetic-error-operands" "ceiling" "dolist" "delete" "make-condition" "string-left-trim"
256
+ "integer-decode-float" "check-type" "notevery" "function-lambda-expression" "-"
257
+ "multiple-value-setq" "name-char" "push" "pprint-pop" "compile-file-pathname" "list-length"
258
+ "nstring-upcase" "eq" "find-if" "method-qualifiers" "caadr" "cddr" "string=" "let*"
259
+ "remove-method" "pathname-match-p" "find-package" "truncate" "caaddr" "get-setf-expansion"
260
+ "loop" "define-setf-expander" "caddr" "package-shadowing-symbols" "force-output"
261
+ "slot-makunbound" "string-not-greaterp" "cdadar" "cdaadr" "logandc2" "make-array"
262
+ "merge-pathnames" "sin" "1-" "machine-version" "ffloor" "packagep" "set-pprint-dispatch" "flet"
263
+ "gensym" "pprint-exit-if-list-exhausted" "cos" "get" "mapl" "delete-if"
264
+ "with-condition-restarts" "atanh" "copy-list" "fill" "char-not-greaterp" "bit-orc1" "mod"
265
+ "package-used-by-list" "warn" "add-method" "simple-string-p" "find-restart" "describe"
266
+ "pathname-version" "peek-char" "yes-or-no-p" "complexp" "aref" "not" "position-if" "string>="
267
+ "defstruct" "float-radix" "ninth" "caadar" "subtypep" "set" "butlast" "allocate-instance"
268
+ "with-input-from-string" "assoc" "write" "make-random-state" "bit-eqv" "float-digits"
269
+ "long-site-name" "with-compilation-unit" "delete-duplicates" "make-symbol" "room" "cdar"
270
+ "pprint-fill" "defgeneric" "macroexpand-1" "scale-float" "cdaaar"
271
+ "update-instance-for-different-class" "array-row-major-index" "ed" "file-string-length"
272
+ "ensure-directories-exist" "copy-readtable" "string<=" "seventh" "with-output-to-string"
273
+ "signum" "elt" "untrace" "null" "defparameter" "block" "prin1" "revappend" "gentemp" "ctypecase"
274
+ "ash" "sxhash" "listp" "do-external-symbols" "bit-ior" "etypecase" "sort" "change-class"
275
+ "find-class" "alpha-char-p" "map-into" "terpri" "do-all-symbols" "ldb" "logorc1" "search"
276
+ "fmakunbound" "load" "character" "string-not-equal" "pathnamep" "make-broadcast-stream" "arrayp"
277
+ "mapcan" "cerror" "invoke-restart-interactively" "assoc-if-not" "with-package-iterator"
278
+ "get-internal-run-time" "read-delimited-list" "unless" "lower-case-p" "restart-name" "/" "boole"
279
+ "defmethod" "float" "software-version" "vector-pop" "vector-push-extend" "caar" "ldiff" "member"
280
+ "find-symbol" "reduce" "svref" "describe-object" "logior" "string-equal" "type-of" "position"
281
+ "cddadr" "pathname-device" "get-output-stream-string" "symbol-package" "tan"
282
+ "compute-applicable-methods" "cddddr" "nsubst-if-not" "sublis" "set-difference"
283
+ "two-way-stream-input-stream" "adjustable-array-p" "machine-instance" "signal" "conjugate"
284
+ "caaaar" "endp" "lisp-implementation-version" "cddaar" "package-name" "adjust-array" "bit-nand"
285
+ "gethash" "in-package" "symbol-function" "make-concatenated-stream" "defpackage" "class-of"
286
+ "no-next-method" "logeqv" "deposit-field" "disassemble" "unuse-package" "copy-tree" "find"
287
+ "asinh" "class-name" "rename-file" "values" "print-not-readable-object" "mismatch" "cadadr"
288
+ "shadowing-import" "delete-if-not" "maplist" "listen" "return" "stream-element-type" "unintern"
289
+ "merge" "make-synonym-stream" "prin1-to-string" "nsubst-if" "byte-position" "phase"
290
+ "muffle-warning" "remhash" "continue" "load-time-value" "hash-table-size"
291
+ "upgraded-complex-part-type" "char-lessp" "sbit" "upgraded-array-element-type" "file-length"
292
+ "typecase" "cadddr" "first" "rationalize" "logtest" "find-if-not" "dpb" "mapc" "sinh"
293
+ "char-greaterp" "shiftf" "denominator" "get-universal-time" "nconc" "setf" "lognand"
294
+ "rename-package" "pprint-logical-block" "break" "symbol-macrolet" "the" "fresh-line"
295
+ "clear-output" "assoc-if" "string/=" "princ" "directory-namestring" "stream-error-stream"
296
+ "array-element-type" "setq" "copy-seq" "time" "restart-case" "prog*" "shared-initialize"
297
+ "array-total-size" "simple-bit-vector-p" "define-method-combination" "write-byte" "constantly"
298
+ "caddar" "print-object" "vector" "throw" "reverse" ">=" "upper-case-p" "nbutlast"))
299
+
300
+ (list_lit
301
+ .
302
+ (sym_lit) @operator
303
+ (#match? @operator "^([+*-+=<>]|<=|>=|/=)$"))
304
+
305
+ ((sym_lit) @string.special.symbol
306
+ (#lua-match? @string.special.symbol "^[&]"))
307
+
308
+ [
309
+ (array_dimension)
310
+ "#0A"
311
+ "#0a"
312
+ ] @number
313
+
314
+ (char_lit) @character
@@ -0,0 +1,5 @@
1
+ ([
2
+ (comment)
3
+ (block_comment)
4
+ ] @injection.content
5
+ (#set! injection.language "comment"))