2014-07-21 01:42:03 +02:00
|
|
|
# http://complang.org/ragel
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# ragel.kak does not try to detect host language.
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](ragel|rl) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype ragel
|
2014-07-21 01:42:03 +02:00
|
|
|
}
|
|
|
|
|
2019-04-10 05:54:19 +02:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=ragel %{
|
2019-03-13 22:00:59 +01:00
|
|
|
require-module ragel
|
2019-04-10 05:54:19 +02:00
|
|
|
|
2022-04-30 11:22:47 +02:00
|
|
|
hook window ModeChange pop:insert:.* -group ragel-trim-indent ragel-trim-indent
|
2019-04-10 05:54:19 +02:00
|
|
|
hook window InsertChar .* -group ragel-indent ragel-indent-on-char
|
2021-04-17 10:17:01 +02:00
|
|
|
hook window InsertChar \n -group ragel-insert ragel-insert-on-new-line
|
2019-04-10 05:54:19 +02:00
|
|
|
hook window InsertChar \n -group ragel-indent ragel-indent-on-new-line
|
|
|
|
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window ragel-.+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
hook -group ragel-highlight global WinSetOption filetype=ragel %{
|
|
|
|
add-highlighter window/ragel ref ragel
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/ragel }
|
2019-03-13 22:00:59 +01:00
|
|
|
}
|
|
|
|
|
2019-04-13 21:57:57 +02:00
|
|
|
provide-module ragel %§
|
2019-03-13 22:00:59 +01:00
|
|
|
|
2014-07-21 01:42:03 +02:00
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/ragel regions
|
|
|
|
add-highlighter shared/ragel/code default-region group
|
2018-07-02 12:59:12 +02:00
|
|
|
add-highlighter shared/ragel/double_string region '"' (?<!\\)(\\\\)*" fill string
|
|
|
|
add-highlighter shared/ragel/single_string region "'" "'" fill string
|
|
|
|
add-highlighter shared/ragel/comment region '#' '$' fill comment
|
2014-07-21 01:42:03 +02:00
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/ragel/code/ regex \b(true|false)\b 0:value
|
|
|
|
add-highlighter shared/ragel/code/ regex '%%\{|\}%%|<\w+>' 0:variable
|
|
|
|
add-highlighter shared/ragel/code/ regex :=|=>|->|:>|:>>|<: 0:operator
|
|
|
|
add-highlighter shared/ragel/code/ regex \b(action|alnum|alpha|any|ascii|case|cntrl|contained|context|data|digit|empty|eof|err|error|exec|export|exports|extend|fblen|fbreak|fbuf|fc|fcall|fcurs|fentry|fexec|fgoto|fhold|first_final|fnext|fpc|fret|from|fstack|ftargs|graph|import|include|init|inwhen|lerr|lower|machine|nocs|noend|noerror|nofinal|noprefix|outwhen|postpop|prepush|print|punct|range|space|start|to|upper|when|write|xdigit|zlen)\b 0:keyword
|
2014-07-21 01:42:03 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-12-19 10:10:26 +01:00
|
|
|
define-command -hidden ragel-trim-indent %{
|
2015-11-04 10:48:47 +01:00
|
|
|
# remove trailing white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft -itersel x s \h+$ <ret> d }
|
2014-07-21 01:42:03 +02:00
|
|
|
}
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden ragel-indent-on-char %<
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %<
|
2014-07-21 01:42:03 +02:00
|
|
|
# align closer token to its opener when alone on a line
|
2020-07-30 04:31:58 +02:00
|
|
|
try %< execute-keys -draft <a-h> <a-k> ^\h+[\]})]$ <ret> m s \A|.\z <ret> 1<a-&> >
|
|
|
|
try %< execute-keys -draft <a-h> <a-k> ^\h+ [*]$ <ret> <a-?> [*]$ <ret> s \A|.\z <ret> 1<a-&> >
|
2015-11-10 14:36:16 +01:00
|
|
|
>
|
|
|
|
>
|
2014-07-21 01:42:03 +02:00
|
|
|
|
2021-04-17 10:17:01 +02:00
|
|
|
define-command -hidden ragel-insert-on-new-line %<
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %<
|
2017-01-11 14:56:48 +01:00
|
|
|
# copy _#_ comment 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 ragel-indent-on-new-line %<
|
|
|
|
evaluate-commands -draft -itersel %<
|
2014-07-21 01:42:03 +02:00
|
|
|
# preserve previous line indent
|
2019-10-22 11:02:06 +02:00
|
|
|
try %{ execute-keys -draft <semicolon> K <a-&> }
|
2014-07-21 01:42:03 +02:00
|
|
|
# filter previous line
|
2018-12-19 10:10:26 +01:00
|
|
|
try %{ execute-keys -draft k : ragel-trim-indent <ret> }
|
2014-07-21 01:42:03 +02:00
|
|
|
# indent after lines ending with opener token
|
2022-03-16 23:20:07 +01:00
|
|
|
try %< execute-keys -draft k x <a-k> [[{(*]$ <ret> j <a-gt> >
|
2020-07-30 04:31:20 +02:00
|
|
|
# align closer token to its opener 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-&> >
|
2015-11-10 14:36:16 +01:00
|
|
|
>
|
|
|
|
>
|
2014-07-21 01:42:03 +02:00
|
|
|
|
2019-04-13 21:57:57 +02:00
|
|
|
§
|