2022-09-20 19:42:56 +02:00
|
|
|
; extends
|
|
|
|
|
2022-03-23 12:33:52 +01:00
|
|
|
;; Keywords
|
|
|
|
(("else" @keyword) (#set! conceal ""))
|
2023-06-08 19:27:16 +02:00
|
|
|
(("for" @keyword) (#set! conceal ""))
|
2022-03-23 12:33:52 +01:00
|
|
|
(("function" @keyword) (#set! conceal "λ"))
|
|
|
|
(("if" @keyword) (#set! conceal ""))
|
|
|
|
(("local" @keyword) (#set! conceal ""))
|
|
|
|
(("return" @keyword) (#set! conceal ""))
|
2023-06-08 19:27:16 +02:00
|
|
|
(("while" @keyword) (#set! conceal ""))
|
2022-03-23 12:33:52 +01:00
|
|
|
|
|
|
|
;; Functions
|
|
|
|
((function_call name: (identifier) @function (#eq? @function "require")) (#set! conceal ""))
|