mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-24 16:15:38 +03:00
Add swift.kak for Swift highlighting
No autoindent logic at the moment
This commit is contained in:
parent
9298efd19b
commit
bab174b0ec
32
rc/base/swift.kak
Normal file
32
rc/base/swift.kak
Normal file
@ -0,0 +1,32 @@
|
||||
hook global BufCreate .*\.(swift) %{
|
||||
set buffer filetype swift
|
||||
}
|
||||
|
||||
addhl -group / regions -default code swift \
|
||||
string %{(?<!')"} %{(?<!\\)(\\\\)*"} '' \
|
||||
comment /\* \*/ '' \
|
||||
comment // $ ''
|
||||
|
||||
addhl -group /swift/string fill string
|
||||
addhl -group /swift/comment fill comment
|
||||
|
||||
addhl -group /swift/comment regex "\<(TODO|XXX|MARK)\>" 0:red
|
||||
|
||||
addhl -group /swift/code regex %{\<(true|false|nil)\>|\<-?(?!\$)\d+[fdiu]?|'((\\.)?|[^'\\])'} 0:value
|
||||
addhl -group /swift/code regex "\<(let|var|while|in|for|if|else|do|switch|case|default|break|continue|return|try|catch|throw|new|delete|and|or|not|operator|explicit|func|import|return|init|deinit|get|set)\>" 0:keyword
|
||||
addhl -group /swift/code regex "\<as\>[!?]?" 0:keyword
|
||||
addhl -group /swift/code regex "(\$[0-9])\>" 0:keyword
|
||||
addhl -group /swift/code regex "\<(const|mutable|auto|namespace|inline|static|volatile|class|struct|enum|union|public|protected|private|typedef|virtual|friend|extern|typename|override|final|required|convenience|dynamic)\>" 0:attribute
|
||||
|
||||
addhl -group /swift/code regex "\<(self|nil|id|super)\>" 0:value
|
||||
addhl -group /swift/code regex "\<(Bool|String|UInt|UInt16|UInt32|UInt64|UInt8)\>" 0:type
|
||||
addhl -group /swift/code regex "\<(IBAction|IBOutlet)\>" 0:attribute
|
||||
addhl -group /swift/code regex "@\w+\>" 0:attribute
|
||||
|
||||
hook global WinSetOption filetype=swift %{
|
||||
addhl ref swift
|
||||
}
|
||||
|
||||
hook global WinSetOption filetype=(?!swift).* %{
|
||||
rmhl swift
|
||||
}
|
Loading…
Reference in New Issue
Block a user