kakoune/rc/extra/cabal.kak

77 lines
2.7 KiB
Plaintext
Raw Normal View History

2014-07-21 00:19:52 +02:00
# http://haskell.org/cabal
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
# Detection
# ‾‾‾‾‾‾‾‾‾
hook global BufCreate .*[.](cabal) %{
set-option buffer filetype cabal
2014-07-21 00:19:52 +02:00
}
# Highlighters
# ‾‾‾‾‾‾‾‾‾‾‾‾
add-highlighter shared/ regions -default code cabal \
2014-07-21 00:19:52 +02:00
comment (--) $ '' \
comment \{- -\} \{-
add-highlighter shared/cabal/comment fill comment
2014-07-21 00:19:52 +02:00
add-highlighter shared/cabal/code regex \b(true|false)\b|(([<>]?=?)?\d+(\.\d+)+) 0:value
add-highlighter shared/cabal/code regex \b(if|else)\b 0:keyword
add-highlighter shared/cabal/code regex ^\h*([A-Za-z][A-Za-z0-9_-]*)\h*: 1:variable
2014-07-21 00:19:52 +02:00
# Commands
# ‾‾‾‾‾‾‾‾
define-command -hidden cabal-filter-around-selections %{
# remove trailing white spaces
try %{ execute-keys -draft -itersel <a-x> s \h+$ <ret> d }
2014-07-21 00:19:52 +02:00
}
define-command -hidden cabal-indent-on-new-line %[
evaluate-commands -draft -itersel %[
# copy '#' comment prefix and following white spaces
try %[ execute-keys -draft k <a-x> s ^\h*\K#\h* <ret> y gh j P ]
2014-07-21 00:19:52 +02:00
# preserve previous line indent
try %[ execute-keys -draft \; K <a-&> ]
2014-07-21 00:19:52 +02:00
# filter previous line
try %[ execute-keys -draft k : cabal-filter-around-selections <ret> ]
2014-07-21 00:19:52 +02:00
# indent after lines ending with { or :
try %[ execute-keys -draft <space> k <a-x> <a-k> [:{]$ <ret> j <a-gt> ]
2014-07-21 00:19:52 +02:00
]
]
define-command -hidden cabal-indent-on-opening-curly-brace %[
evaluate-commands -draft -itersel %[
2014-07-21 00:19:52 +02:00
# align indent with opening paren when { is entered on a new line after the closing paren
try %[ execute-keys -draft h <a-F> ) M <a-k> \A\(.*\)\h*\n\h*\{\z <ret> s \A|.\z <ret> 1<a-&> ]
2014-07-21 00:19:52 +02:00
]
]
define-command -hidden cabal-indent-on-closing-curly-brace %[
evaluate-commands -draft -itersel %[
2014-07-21 00:19:52 +02:00
# align to opening curly brace when alone on a line
try %[ execute-keys -draft <a-h> <a-k> ^\h+\}$ <ret> h m s \A|.\z<ret> 1<a-&> ]
2014-07-21 00:19:52 +02:00
]
]
# Initialization
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
hook -group cabal-highlight global WinSetOption filetype=cabal %{ add-highlighter window ref cabal }
2014-07-21 00:19:52 +02:00
hook global WinSetOption filetype=cabal %[
hook window InsertEnd .* -group cabal-hooks cabal-filter-around-selections
hook window InsertChar \n -group cabal-indent cabal-indent-on-new-line
hook window InsertChar \{ -group cabal-indent cabal-indent-on-opening-curly-brace
hook window InsertChar \} -group cabal-indent cabal-indent-on-closing-curly-brace
2014-07-21 00:19:52 +02:00
]
hook -group cabal-highlight global WinSetOption filetype=(?!cabal).* %{ remove-highlighter window/cabal }
2014-07-21 00:19:52 +02:00
hook global WinSetOption filetype=(?!cabal).* %{
2017-01-04 01:07:45 +01:00
remove-hooks window cabal-indent
remove-hooks window cabal-hooks
2014-07-21 00:19:52 +02:00
}