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) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option 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-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/ regions -default code kakrc \
|
2017-09-30 15:39:57 +02:00
|
|
|
comment (^|\h)\K# $ '' \
|
2017-10-22 01:19:49 +02:00
|
|
|
double_string %{(^|\h)\K"} %{(?<!\\)(\\\\)*"} '' \
|
|
|
|
single_string %{(^|\h)\K'} %{(?<!\\)(\\\\)*'} '' \
|
|
|
|
shell '(^|\h)\K%sh\{' '\}' '\{' \
|
|
|
|
shell '(^|\h)\K%sh\(' '\)' '\(' \
|
|
|
|
shell '(^|\h)\K%sh\[' '\]' '\[' \
|
2017-09-30 15:39:57 +02:00
|
|
|
shell '(^|\h)\K%sh<' '>' '<' \
|
2017-10-22 01:19:49 +02:00
|
|
|
shell '(^|\h)\K-shell-(completion|candidates)\h+%\{' '\}' '\{' \
|
|
|
|
shell '(^|\h)\K-shell-(completion|candidates)\h+%\(' '\)' '\(' \
|
|
|
|
shell '(^|\h)\K-shell-(completion|candidates)\h+%\[' '\]' '\[' \
|
2017-09-30 15:39:57 +02:00
|
|
|
shell '(^|\h)\K-shell-(completion|candidates)\h+%<' '>' '<'
|
2014-06-10 23:02:42 +02:00
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
%sh{
|
|
|
|
# Grammar
|
2017-10-23 04:56:45 +02:00
|
|
|
keywords="edit write write-all kill quit write-quit write-all-quit map unmap alias unalias
|
|
|
|
buffer buffer-next buffer-previous delete-buffer add-highlighter remove-highlighter
|
|
|
|
hook remove-hooks define-command echo debug source try fail
|
2017-11-03 09:09:45 +01:00
|
|
|
set-option unset-option update-option declare-option execute-keys evaluate-commands
|
|
|
|
prompt menu on-key info set-face rename-client set-register select change-directory
|
|
|
|
rename-session colorscheme"
|
2017-10-23 04:56:45 +02:00
|
|
|
attributes="global buffer window current
|
|
|
|
normal insert menu prompt goto view user object
|
|
|
|
number_lines show_matching show_whitespaces fill regex dynregex group flag_lines
|
|
|
|
ranges line column wrap ref regions replace-ranges"
|
|
|
|
types="int bool str regex int-list str-list completions line-specs range-specs"
|
|
|
|
values="default black red green yellow blue magenta cyan white"
|
|
|
|
|
|
|
|
join() { printf "%s" "$1" | tr -s ' \n' "$2"; }
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2017-10-23 04:56:45 +02:00
|
|
|
printf '%s\n' "hook global WinSetOption filetype=kak %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option window static_words '$(join "${keywords}:${attributes}:${types}:${values}" ':')'
|
|
|
|
set-option -- window extra_word_chars '-'
|
2017-10-23 04:56:45 +02:00
|
|
|
}"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
2017-10-21 10:06:48 +02:00
|
|
|
# Highlight keywords (which are always surrounded by whitespace)
|
2017-11-01 18:28:37 +01:00
|
|
|
printf '%s\n' "add-highlighter shared/kakrc/code regex (?:\s|\A)\K($(join "${keywords}" '|'))(?:(?=\s)|\z) 0:keyword
|
|
|
|
add-highlighter shared/kakrc/code regex (?:\s|\A)\K($(join "${attributes}" '|'))(?:(?=\s)|\z) 0:attribute
|
|
|
|
add-highlighter shared/kakrc/code regex (?:\s|\A)\K($(join "${types}" '|'))(?:(?=\s)|\z) 0:type
|
|
|
|
add-highlighter shared/kakrc/code regex (?:\s|\A)\K($(join "${values}" '|'))(?:(?=\s)|\z) 0:value"
|
2016-03-14 13:08:51 +01:00
|
|
|
}
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/kakrc/code regex \brgb:[0-9a-fA-F]{6}\b 0:value
|
2014-06-10 23:02:42 +02:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/kakrc/double_string fill string
|
|
|
|
add-highlighter shared/kakrc/single_string fill string
|
|
|
|
add-highlighter shared/kakrc/comment fill comment
|
|
|
|
add-highlighter shared/kakrc/shell ref sh
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2017-01-02 05:31:35 +01:00
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden kak-indent-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
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft k <a-x> s ^\h*#\h* <ret> y jgh P }
|
2017-01-02 05:31:35 +01:00
|
|
|
# preserve previous line indent
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft \; K <a-&> }
|
2017-01-02 05:31:35 +01:00
|
|
|
# cleanup trailing whitespaces from previous line
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft k <a-x> s \h+$ <ret> d }
|
2017-10-02 14:59:22 +02:00
|
|
|
# indent after line ending with %[\W\S]
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft k <a-x> <a-k> \%[\W\S]$ <ret> j <a-gt> }
|
2017-01-02 05:31:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group kak-highlight global WinSetOption filetype=kak %{ add-highlighter window 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
|
2018-01-21 00:35:05 +01:00
|
|
|
hook window ModeChange insert:.* -group kak-indent %{ try %{ execute-keys -draft \; <a-x> s ^\h+$ <ret> d } }
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer extra_word_chars '-'
|
2017-01-02 05:31:35 +01:00
|
|
|
}
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group kak-highlight global WinSetOption filetype=(?!kak).* %{ remove-highlighter window/kakrc }
|
2017-01-04 01:07:45 +01:00
|
|
|
hook global WinSetOption filetype=(?!kak).* %{ remove-hooks window kak-indent }
|