Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/common/languages/highlights/ini.scm
3296 views
1
; Order matters! Place lower precedence first.
2
3
(section_name (text) @entity.name.section.group-title)
4
5
(setting_name) @keyword.other.definition
6
7
(setting ("=") @punctuation.separator.key-value)
8
9
(comment) @comment.line.semicolon
10
11
((setting_value) @string.quoted.double
12
(#match? @string.quoted.double "^\".*\""))
13
14