Update uses of #
to .
in our scheme files where they are interchangeable.
uses of `#` cause ERRORs in our scheme highlighting
This commit is contained in:
parent
85f193dd09
commit
86fa27eb54
30 changed files with 81 additions and 83 deletions
|
@ -2,27 +2,27 @@
|
|||
; --------------
|
||||
(script_element
|
||||
(raw_text) @content
|
||||
(#set! "language" "javascript"))
|
||||
(.set! "language" "javascript"))
|
||||
|
||||
((script_element
|
||||
(start_tag
|
||||
(attribute
|
||||
(quoted_attribute_value (attribute_value) @_language)))
|
||||
(raw_text) @content)
|
||||
(#eq? @_language "ts")
|
||||
(#set! "language" "typescript"))
|
||||
(.eq? @_language "ts")
|
||||
(.set! "language" "typescript"))
|
||||
|
||||
((script_element
|
||||
(start_tag
|
||||
(attribute
|
||||
(quoted_attribute_value (attribute_value) @_language)))
|
||||
(raw_text) @content)
|
||||
(#eq? @_language "typescript")
|
||||
(#set! "language" "typescript"))
|
||||
(.eq? @_language "typescript")
|
||||
(.set! "language" "typescript"))
|
||||
|
||||
(style_element
|
||||
(raw_text) @content
|
||||
(#set! "language" "css"))
|
||||
(.set! "language" "css"))
|
||||
|
||||
((raw_text_expr) @content
|
||||
(#set! "language" "javascript"))
|
||||
(.set! "language" "javascript"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue