mirror of
https://github.com/rwinkhart/go-highlite.git
synced 2026-09-06 00:47:15 -04:00
Embed "ini" support
This commit is contained in:
@@ -1,6 +1,12 @@
|
|||||||
filetype: ini
|
//go:build stxIni || stxAll
|
||||||
|
|
||||||
detect:
|
package syntax
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
syntaxMap["ini"] = &lazySyntax{init: func() []byte {
|
||||||
|
return []byte(`filetype: ini
|
||||||
|
|
||||||
|
detect:
|
||||||
filename: "\\.(ini|desktop|lfl|override)$|(mimeapps\\.list|pinforc|setup\\.cfg)$|weechat/.+\\.conf$"
|
filename: "\\.(ini|desktop|lfl|override)$|(mimeapps\\.list|pinforc|setup\\.cfg)$|weechat/.+\\.conf$"
|
||||||
header: "^\\[[A-Za-z]+\\]$"
|
header: "^\\[[A-Za-z]+\\]$"
|
||||||
|
|
||||||
@@ -12,3 +18,6 @@ rules:
|
|||||||
- statement: "[=;]"
|
- statement: "[=;]"
|
||||||
- comment: "(^|[[:space:]])#([^{].*)?$"
|
- comment: "(^|[[:space:]])#([^{].*)?$"
|
||||||
- constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'"
|
- constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'"
|
||||||
|
`)
|
||||||
|
}}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user