diff options
| author | Evan Relf <evan@evanrelf.com> | 2019-12-12 16:00:50 -0800 |
|---|---|---|
| committer | Evan Relf <evan@evanrelf.com> | 2019-12-12 16:00:50 -0800 |
| commit | 77ec8b70a8384afe7235fa80d4d4ffc411b2cf0c (patch) | |
| tree | ea33cdc02b7193ae92da0ccbe087cd2a2490139b | |
| parent | 991ed97f4c26f6705b0a7ed82ebd4ffcdae44f77 (diff) | |
Fix Haskell multi-line quasiquoter highlighting
| -rw-r--r-- | rc/filetype/haskell.kak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc/filetype/haskell.kak b/rc/filetype/haskell.kak index 4315d37e..7d15014a 100644 --- a/rc/filetype/haskell.kak +++ b/rc/filetype/haskell.kak @@ -39,7 +39,7 @@ add-highlighter shared/haskell/macro region ^\h*?\K# add-highlighter shared/haskell/pragma region -recurse \{- \{-# '#-\}' fill meta add-highlighter shared/haskell/comment region -recurse \{- \{- -\} fill comment add-highlighter shared/haskell/line_comment region --(?:[^!#$%&*+./<>?@\\\^|~=]|$) $ fill comment -add-highlighter shared/haskell/quasiquote region \[\b[_a-z]['\w]*#?\| \|\] fill string +add-highlighter shared/haskell/quasiquote region \[\b[_a-z]['\w]*#?\| \|\] regex \[\b[_a-z]['\w]*#?\|(.*?)\|\] 1:string add-highlighter shared/haskell/code/ regex (?<!')\b0x+[A-Fa-f0-9]+ 0:value add-highlighter shared/haskell/code/ regex (?<!')\b\d+([.]\d+)? 0:value |
