nanorc/swift.nanorc

51 lines
1.6 KiB
Plaintext
Raw Normal View History

2016-03-07 22:32:57 +01:00
##############################################################################
# Swift syntax highlighting for Nano. v.1.04
2016-03-07 22:32:57 +01:00
##############################################################################
syntax "Swift" "\.swift$"
# Default
color white ".+"
# Operators
color yellow "[.:;,+*|=!?\%]" "<" ">" "/" "-" "&"
color brightyellow "[!]"
2016-03-07 22:32:57 +01:00
# Statements
2016-05-03 21:27:40 +02:00
color magenta "\<(class|import|let|var|struct|enum|func|if|else|switch|case|default|for|in|internal|external|unowned|static|private|public|throws)\>"
color magenta "\<(prefix|postfix|operator|extension|lazy|get|set|self|willSet|didSet|override|super|convenience|weak|strong|mutating|return|guard)\>"
2016-03-07 22:32:57 +01:00
# Keywords
color cyan "\<(print)\>"
color magenta "\<(init)\>"
2016-03-07 22:32:57 +01:00
# Numbers
color blue "\<([0-9]+)\>"
2016-03-07 22:32:57 +01:00
# Standard Types
color brightmagenta "\<((U)?Int(8|16|32|64))\>"
color brightmagenta "\<(true|false|nil)\>"
color brightmagenta "\<(Double|String|Float|Bool|Dictionary|Array|Int|UInt|Character|Range|Set|UnicodeScalar|Bit|RawByte|Slice|UnsafePointer|UnsafeMutablePointer)\>"
color magenta "\<(AnyObject)\>"
# Standard Type Aliases and Protocols
color magenta "\<(AnyObject|AnyClass|GeneratorType|AnyGenerator|Element|Optional|Mirror|UnicodeScalarType|IntMax|UIntMax|Void|Any|Comparable|Equatable|Hashable|SequenceType)\>"
# Standard Libraries
color cyan "\<(Foundation|Glibc|Darwin|XCTest)\>"
2016-03-07 22:32:57 +01:00
# Text
color red ""[^"]*""
# Variable in Text
color white start="\\\(" end="\)"
2016-03-07 22:32:57 +01:00
# Comments
color green "//.*"
color brightgreen "///.*"
color green start="/\*\*" end="\*/"
color green "[/**]"
# Trailing whitespace
color ,green "[[:space:]]+$"