2019-11-09 15:22:19 +01:00
|
|
|
# http://gluon-lang.org
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](glu) %{
|
|
|
|
set-option buffer filetype gluon
|
|
|
|
}
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=gluon %{
|
|
|
|
require-module gluon
|
|
|
|
|
|
|
|
set-option window extra_word_chars '_' "'"
|
2021-02-28 21:07:21 +01:00
|
|
|
hook window ModeChange pop:insert:.* -group gluon-trim-indent gluon-trim-indent
|
2021-04-17 10:17:01 +02:00
|
|
|
hook window InsertChar \n -group gluon-insert gluon-insert-on-new-line
|
2019-11-09 15:22:19 +01:00
|
|
|
hook window InsertChar \n -group gluon-indent gluon-indent-on-new-line
|
|
|
|
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{
|
|
|
|
remove-hooks window gluon-.+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hook -group gluon-highlight global WinSetOption filetype=gluon %{
|
|
|
|
add-highlighter window/gluon ref gluon
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{
|
|
|
|
remove-highlighter window/gluon
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-30 05:07:43 +02:00
|
|
|
provide-module gluon %§
|
2019-11-09 15:22:19 +01:00
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
add-highlighter shared/gluon regions
|
|
|
|
add-highlighter shared/gluon/code default-region group
|
|
|
|
add-highlighter shared/gluon/string region (?<!')" (?<!\\)(\\\\)*" fill string
|
|
|
|
add-highlighter shared/gluon/raw_string region -match-capture \br(#+)" \"(#+) fill string
|
|
|
|
add-highlighter shared/gluon/comment region /\* \*/ fill comment
|
|
|
|
add-highlighter shared/gluon/line_comment region // $ fill comment
|
|
|
|
add-highlighter shared/gluon/attribute region -recurse \[ '#\[' \] fill meta
|
|
|
|
# balance out bracket ]
|
|
|
|
|
|
|
|
# matches hexadecimal literals
|
|
|
|
add-highlighter shared/gluon/code/ regex \b0x+[A-Fa-f0-9]+ 0:value
|
|
|
|
# matches decimal and floating-point literals
|
|
|
|
add-highlighter shared/gluon/code/ regex \b\d+([.]\d+)? 0:value
|
|
|
|
|
|
|
|
# matches keywords
|
|
|
|
add-highlighter shared/gluon/code/ regex \
|
|
|
|
(?<!')\b(type|if|then|else|match|with|let|rec|do|seq|in)\b(?!') 0:keyword
|
|
|
|
|
|
|
|
# matches macros
|
|
|
|
add-highlighter shared/gluon/code/ regex \b\w+! 0:meta
|
|
|
|
|
|
|
|
# matches uppercase identifiers: Monad Some
|
|
|
|
add-highlighter shared/gluon/code/ regex \b[A-Z][\w']* 0:variable
|
|
|
|
|
|
|
|
# matches operators: ... > < <= ^ <*> <$> etc
|
|
|
|
# matches dot: .
|
|
|
|
# matches keywords: @ : ->
|
|
|
|
add-highlighter shared/gluon/code/ regex (?<![~<=>|:!?/.@$*&#%+\^\-\\])[~<=>|:!?/.@$*&#%+\^\-\\]+ 0:operator
|
|
|
|
|
|
|
|
# matches 'x' '\\' '\'' '\n' '\0'
|
|
|
|
# not incomplete literals: '\'
|
|
|
|
add-highlighter shared/gluon/code/ regex \B'([^\\]|[\\]['"\w\d\\])' 0:string
|
|
|
|
# this has to come after operators so '-' etc is correct
|
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
define-command -hidden gluon-trim-indent %{
|
|
|
|
# remove trailing white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft -itersel x s \h+$ <ret> d }
|
2019-11-09 15:22:19 +01:00
|
|
|
}
|
|
|
|
|
2021-04-17 10:17:01 +02:00
|
|
|
define-command -hidden gluon-insert-on-new-line %~
|
2020-07-30 05:17:58 +02:00
|
|
|
evaluate-commands -draft -itersel %_
|
2019-11-09 15:41:11 +01:00
|
|
|
# copy // and /// comments prefix and following white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft k x s ^\h*\K///?\h* <ret> y gh j P }
|
2021-04-17 10:17:01 +02:00
|
|
|
_
|
|
|
|
~
|
|
|
|
|
|
|
|
define-command -hidden gluon-indent-on-new-line %~
|
|
|
|
evaluate-commands -draft -itersel %_
|
2019-11-09 15:22:19 +01:00
|
|
|
# preserve previous line indent
|
|
|
|
try %{ execute-keys -draft \; K <a-&> }
|
|
|
|
# filter previous line
|
|
|
|
try %{ execute-keys -draft k : gluon-trim-indent <ret> }
|
|
|
|
# indent after lines ending with (open) braces, =, ->, condition, rec,
|
|
|
|
# or in
|
2020-08-12 00:30:01 +02:00
|
|
|
try %{ execute-keys -draft \; k x <a-k> (\(|\{|\[|=|->|\b(?:then|else|rec|in))$ <ret> j <a-gt> }
|
2020-07-27 21:38:55 +02:00
|
|
|
# deindent closing brace(s) when after cursor
|
2022-03-16 23:20:07 +01:00
|
|
|
try %< execute-keys -draft x <a-k> ^\h*[})\]] <ret> gh / \})\]] <ret> m <a-S> 1<a-&> >
|
2020-07-30 05:17:58 +02:00
|
|
|
_
|
|
|
|
~
|
2019-11-09 15:22:19 +01:00
|
|
|
|
2020-07-30 05:07:43 +02:00
|
|
|
§
|