2017-01-02 05:31:35 +01:00
|
|
|
# http://kakoune.org
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
hook global BufCreate (.*/)?(kakrc|.*.kak) %{
|
2013-10-30 10:38:40 +01:00
|
|
|
set buffer filetype kak
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2017-01-02 05:31:35 +01:00
|
|
|
# Highlighters & Completion
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group / regions -default code kakrc \
|
2014-06-12 22:52:23 +02:00
|
|
|
comment (^|\h)\K\# $ '' \
|
2014-06-12 00:29:23 +02:00
|
|
|
double_string %{(^|\h)"} %{(?<!\\)(\\\\)*"} '' \
|
|
|
|
single_string %{(^|\h)'} %{(?<!\\)(\\\\)*'} '' \
|
2017-05-15 20:55:22 +02:00
|
|
|
shell '%sh\{' '\}' '\{' \
|
|
|
|
shell '%sh\(' '\)' '\(' \
|
|
|
|
shell '%sh\[' '\]' '\[' \
|
|
|
|
shell '%sh\<' '\>' '\<' \
|
|
|
|
shell '-shell-(completion|candidates)\h+%\{' '\}' '\{' \
|
|
|
|
shell '-shell-(completion|candidates)\h+%\(' '\)' '\(' \
|
|
|
|
shell '-shell-(completion|candidates)\h+%\[' '\]' '\[' \
|
|
|
|
shell '-shell-(completion|candidates)\h+%\<' '\>' '\<'
|
2014-06-10 23:02:42 +02:00
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
%sh{
|
|
|
|
# Grammar
|
2017-01-04 00:30:50 +01:00
|
|
|
keywords="hook|remove-hooks|rmhooks|add-highlighter|addhl|remove-highlighter|rmhl|exec|eval|source|runtime|define-command|def|alias"
|
|
|
|
keywords="${keywords}|unalias|declare-option|decl|echo|edit|set-option|set|unset-option|unset|map|unmap|set-face|face|prompt|menu|info"
|
2016-11-14 01:27:14 +01:00
|
|
|
keywords="${keywords}|try|catch|rename-client|rename-buffer|rename-session|change-directory|colorscheme"
|
2017-05-15 20:55:22 +02:00
|
|
|
attributes="global|buffer|window|current"
|
|
|
|
attributes="${attributes}|normal|insert|menu|prompt|goto|view|user|object"
|
|
|
|
attributes="${attributes}|number_lines|show_matching|show_whitespaces|fill|regex|dynregex|group|flag_lines|ranges|line|column|wrap|ref|regions"
|
|
|
|
types="int|bool|str|regex|int-list|str-list|line-flags|completions|range-faces"
|
|
|
|
values="default|black|red|green|yellow|blue|magenta|cyan|white|"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2016-04-23 07:47:01 +02:00
|
|
|
printf %s\\n "hook global WinSetOption filetype=kak %{
|
2017-05-15 20:55:22 +02:00
|
|
|
set window static_words '${keywords}:${attributes}:${types}:${values}'
|
2017-01-10 14:48:04 +01:00
|
|
|
set -- window completion_extra_word_char '-'
|
2016-03-17 14:30:14 +01:00
|
|
|
}" | sed 's,|,:,g'
|
2016-03-14 13:08:51 +01:00
|
|
|
|
2017-05-15 20:55:22 +02:00
|
|
|
# Highlight keywords. Teach \b that - does not create a word boundary
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "
|
2017-05-15 20:55:22 +02:00
|
|
|
add-highlighter -group /kakrc/code regex \b(?<!-)(${keywords})(?!-)\b 0:keyword
|
|
|
|
add-highlighter -group /kakrc/code regex \b(?<!-)(${attributes})(?!-)\b 0:attribute
|
|
|
|
add-highlighter -group /kakrc/code regex \b(?<!-)(${types})(?!-)\b 0:type
|
|
|
|
add-highlighter -group /kakrc/code regex \b(?<!-)(${values})(?!-)\b 0:value
|
2016-03-14 13:08:51 +01:00
|
|
|
"
|
|
|
|
}
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /kakrc/code regex \brgb:[0-9a-fA-F]{6}\b 0:value
|
2014-06-10 23:02:42 +02:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /kakrc/double_string fill string
|
|
|
|
add-highlighter -group /kakrc/single_string fill string
|
|
|
|
add-highlighter -group /kakrc/comment fill comment
|
|
|
|
add-highlighter -group /kakrc/shell ref sh
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2017-01-02 05:31:35 +01:00
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
def -hidden kak-indent-on-new-line %{
|
|
|
|
eval -draft -itersel %{
|
2017-01-11 14:56:48 +01:00
|
|
|
# copy '#' comment prefix and following white spaces
|
2017-01-13 01:50:03 +01:00
|
|
|
try %{ exec -draft k <a-x> s ^\h*#\h* <ret> y jgh P }
|
2017-01-02 05:31:35 +01:00
|
|
|
# preserve previous line indent
|
2017-01-13 01:50:03 +01:00
|
|
|
try %{ exec -draft \; K <a-&> }
|
2017-01-02 05:31:35 +01:00
|
|
|
# cleanup trailing whitespaces from previous line
|
|
|
|
try %{ exec -draft k <a-x> s \h+$ <ret> d }
|
|
|
|
# indent after line ending with %[[:punct:]]
|
|
|
|
try %{ exec -draft k <a-x> <a-k> \%[[:punct:]]$ <ret> j <a-gt> }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group kak-highlight global WinSetOption filetype=kak %{ add-highlighter ref kakrc }
|
2017-01-02 05:31:35 +01:00
|
|
|
|
|
|
|
hook global WinSetOption filetype=kak %{
|
|
|
|
hook window InsertChar \n -group kak-indent kak-indent-on-new-line
|
|
|
|
# cleanup trailing whitespaces on current line insert end
|
|
|
|
hook window InsertEnd .* -group kak-indent %{ try %{ exec -draft \; <a-x> s ^\h+$ <ret> d } }
|
|
|
|
}
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group kak-highlight global WinSetOption filetype=(?!kak).* %{ remove-highlighter kakrc }
|
|
|
|
hook global WinSetOption filetype=(?!kak).* %{ remove-hooks window kak-indent }
|