mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-23 01:46:18 +04:00
a8248c50e1
The grammar now exposes the delimiter of raw-strings. We can now inject the inner grammar in cases like: const char* script = R"js( alert('hello world!'); )js";
5 lines
133 B
Scheme
5 lines
133 B
Scheme
; inherits: c
|
|
(raw_string_literal
|
|
delimiter: (raw_string_delimiter) @injection.language
|
|
(raw_string_content) @injection.content)
|