hook global BufCreate .*\.(swift) %{ set buffer filetype swift } addhl -group / regions -default code swift \ string %{(?" 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 "\[!?]?" 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 }