We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2e008f0 + ddf2912 commit 8928c4fCopy full SHA for 8928c4f
src/index.ts
@@ -7,11 +7,14 @@ import { data } from "../output.js";
7
const punctuation = `"+" "-" "*" "/" "=" "." "'" ":" "!" "?" "<" ">" "@" "%" "&" "#" ";" "^" "\`"`;
8
9
export const TenzirQueryLang = LRLanguage.define({
10
+ languageData: {
11
+ commentTokens: { line: "//", block: { open: "/*", close: "*/" } },
12
+ },
13
parser: parser.configure({
14
props: [
15
styleTags({
16
"Scalar true false null DollarIdent": t.literal,
- "String": t.string,
17
+ String: t.string,
18
"StringEsc and else if in let match meta not or this": t.keyword,
19
"OpName! FnIdent": t.name,
20
[punctuation]: t.punctuation,
0 commit comments