Last active
August 29, 2015 14:22
-
-
Save jkonecny12/3b90ea19da4da6491f8d to your computer and use it in GitHub Desktop.
kickstart.kak
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hook global BufCreate .*\.ks %{ | |
set buffer filetype kickstart | |
} | |
addhl -group / regions -default code kickstart \ | |
comment (^|\h)\K\# $ '' \ | |
double_string '"' (?<!\\)(\\\\)*" '' \ | |
single_string "'" (?<!\\)(\\\\)*' '' \ | |
packages '^[^#]*\K%\<packages\>' '^[^#]*\K%\<end\>' '' \ | |
shell '^[^#]*\K%\<(pre|pre-install|post)\>' '^[^#]*\K%\<end\>' '' | |
addhl -group /kickstart/code regex "^\h*\<(auth|authconfig|autopart|autostep|bootloader|btrfs|clearpart|cmdline|device|dmraid|driverdisk|fcoe|firewall|firstboot|group|graphical|halt|ignoredisk|install|cdrom|harddrive|liveimg|nfs|url|iscsi|iscsiname|keyboard|lang|logvol|logging|mediacheck|monitor|multipath|network|part|partition|poweroff|raid|realm|reboot|repo|rescue|rootpw|selinux|services|shutdown|sshkey|sshpw|skipx|text|timezone|updates|upgrade|user|vnc|volgroup|xconfig|zerombr|zfcp)\>" 1:keyword | |
addhl -group /kickstart/code regex '(--\w+=? ?)([^-"\n][^\h\n]+)?' 1:attribute 2:string | |
addhl -group /kickstart/code regex '%\<(include|ksappend)\>' 0:keyword | |
addhl -group /kickstart/comment fill comment | |
addhl -group /kickstart/single_string fill string | |
addhl -group /kickstart/double_string fill string | |
addhl -group /kickstart/packages regex "^\h*[\w-]*" 0:value | |
addhl -group /kickstart/packages regex "#[^\n]*" 0:comment | |
addhl -group /kickstart/packages regex "^\h*@[\w-]*" 0:attribute | |
addhl -group /kickstart/packages regex '\`\h*\K%\<packages\>' 0:yellow | |
addhl -group /kickstart/packages regex '^\h*%\<end\>' 0:yellow | |
addhl -group /kickstart/shell regex '\`\h*\K%\<(pre-install|pre|post)\>' 0:yellow | |
addhl -group /kickstart/shell regex '^\h*%\<end\>' 0:yellow | |
addhl -group /kickstart/shell ref sh | |
hook global WinSetOption filetype=kickstart %{ | |
addhl ref kickstart | |
} | |
hook global WinSetOption filetype=(?!kickstart).* %{ | |
rmhl kickstart-highlight | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment