-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add KDL syntax highlighting #3549
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,55 @@ | ||||||||||||||||||
filetype: 'kdl' | ||||||||||||||||||
|
||||||||||||||||||
detect: | ||||||||||||||||||
filename: "\\.kdl$" | ||||||||||||||||||
|
||||||||||||||||||
rules: | ||||||||||||||||||
# Punctuation | ||||||||||||||||||
- symbol.operator: '=' | ||||||||||||||||||
- symbol.brackets: '[{}]' | ||||||||||||||||||
# Strings | ||||||||||||||||||
- constant.string: | ||||||||||||||||||
start: '"' | ||||||||||||||||||
end: '"' | ||||||||||||||||||
skip: '(\\\\\|\\")' | ||||||||||||||||||
rules: | ||||||||||||||||||
- constant.specialChar: '\\u[[:xdigit:]]{1,6}' | ||||||||||||||||||
- constant.specialChar: '\\[btnfr"\\]' | ||||||||||||||||||
# Raw Strings | ||||||||||||||||||
# These definitions are not correct, ideally `#` should be same count for both begin and end, but it should be programmable as captured \1 | ||||||||||||||||||
# In my understanding, this is a micro editor restriction. See https://github.com/zyedidia/micro/blob/21bb61c5ff3cd4cd11adbd521657df90d50f54c7/runtime/syntax/jsonnet.yaml#L61-L78 | ||||||||||||||||||
# So, I defined some typical cases here, supporting only for 0-3 "#" | ||||||||||||||||||
Comment on lines
+19
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I used the same workaround for Rust highlighting in #3192 👍 |
||||||||||||||||||
- constant.string: | ||||||||||||||||||
start: '\br"' | ||||||||||||||||||
end: '"' | ||||||||||||||||||
rules: [] | ||||||||||||||||||
- constant.string: | ||||||||||||||||||
start: '\br#"' | ||||||||||||||||||
end: '"#' | ||||||||||||||||||
rules: [] | ||||||||||||||||||
- constant.string: | ||||||||||||||||||
start: '\br##"' | ||||||||||||||||||
end: '"##' | ||||||||||||||||||
rules: [] | ||||||||||||||||||
- constant.string: | ||||||||||||||||||
start: '\br###"' | ||||||||||||||||||
end: '"###' | ||||||||||||||||||
rules: [] | ||||||||||||||||||
# Integer | ||||||||||||||||||
- constant.number: '[-+]?(\d+)' | ||||||||||||||||||
# Float | ||||||||||||||||||
- constant.number: '[-+]?(\d+)\.\d*' | ||||||||||||||||||
Comment on lines
+38
to
+41
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. KDL supports integer literals in base-2, base-8, and base-16, and the digits may be separated with underscores. Float literals may additionally use scientific notation (which I have not fixed here). 1
Suggested change
Footnotes |
||||||||||||||||||
# Boolean and inf, nan without sign | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. inf, nan? I can't find them in the spec and they don't appear in this syntax definition either so I'm not sure what this comment is about. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are part of the kdl v2 spec that's becoming the main spec soonish: https://github.com/kdl-org/kdl/blob/kdl-v2/CHANGELOG.md |
||||||||||||||||||
- constant.bool.true: '\btrue\b' | ||||||||||||||||||
- constant.bool.false: '\bfalse\b' | ||||||||||||||||||
kachick marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||
- constant: '\bnull\b' | ||||||||||||||||||
# Comments | ||||||||||||||||||
- comment: | ||||||||||||||||||
start: '//' | ||||||||||||||||||
end: '$' | ||||||||||||||||||
rules: | ||||||||||||||||||
- todo: '(TODO|FIXME|XXX|NOTE)' | ||||||||||||||||||
# Not supporting "Slashdash comments" | ||||||||||||||||||
# https://github.com/kdl-org/kdl/blob/de1dbd2c330c9193b836499db241787484627c3b/SPEC.md#L77-L79 | ||||||||||||||||||
# vscode extension realizes this with lookahead and lookbehind, the regex feature cannot be used in micro | ||||||||||||||||||
# It is hard to support much of the use case, so it is omitted |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not entirely sure what the first part of this regex is trying to do? It also doesn't seem to skip escaped duoble quotes properly. Try highlighting the following: