Skip to content
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

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions runtime/kdl.yaml
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: '(\\\\\|\\")'
Copy link
Contributor

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:

"abc\"def" ghi

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
Copy link
Contributor

Choose a reason for hiding this comment

The 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
Copy link
Contributor

Choose a reason for hiding this comment

The 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
# Integer
- constant.number: '[-+]?(\d+)'
# Float
- constant.number: '[-+]?(\d+)\.\d*'
# Integer
- constant.number: '[-+]?([0-9][0-9_]*|0b[01][01_]*|0o[0-7][0-7_]*|0x[0-9A-Fa-f][0-9A-Fa-f_]+)'
# Float
- constant.number: '[-+]?(\d+)\.\d*'

Footnotes

  1. https://github.com/kdl-org/kdl/blob/main/SPEC.md#number

# Boolean and inf, nan without sign
Copy link
Contributor

Choose a reason for hiding this comment

The 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.

Copy link

Choose a reason for hiding this comment

The 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'
- 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