nanorc/haskell.nanorc

36 lines
907 B
Plaintext
Raw Normal View History

2020-04-08 15:16:57 +02:00
syntax "haskell" "\.hs$"
comment "--"
## Keywords
2020-04-08 15:16:57 +02:00
color red "\<(as|case|of|class|data|default|deriving|do|forall|foreign|hiding|if|then|else|import|infix|infixl|infixr|instance|let|in|mdo|module|newtype|qualified|type|where)\>"
## Various symbols
color cyan "(\||@|!|:|_|~|=|\\|;|\(\)|,|\[|\]|\{|\})"
## Operators
color magenta "(==|/=|&&|\|\||<|>|<=|>=)"
## Various symbols
color cyan "(->|<-|=>)"
color magenta "\.|\$"
## Data constructors
2020-04-08 15:16:57 +02:00
color magenta "\<(True|False|Nothing|Just|Left|Right|LT|EQ|GT)\>"
## Data classes
2020-04-08 15:16:57 +02:00
color magenta "\<(Read|Show|Enum|Eq|Ord|Data|Bounded|Typeable|Num|Real|Fractional|Integral|RealFrac|Floating|RealFloat|Monad|MonadPlus|Functor)\>"
## Strings
2020-04-08 15:16:57 +02:00
color yellow ""([^\"]|\\.)*""
## Chars
color brightyellow "'([^\']|\\.)'"
## Comments
color green "--.*"
color green start="\{-" end="-\}"
color brightred "undefined"
2016-12-06 22:02:16 +01:00
## Trailing spaces
color ,green "[[:space:]]+$"