2017-01-02 07:31:35 +03:00
|
|
|
# http://kakoune.org
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2019-04-25 00:06:46 +03:00
|
|
|
hook global BufCreate (.*/)?(kakrc|.*\.kak) %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer filetype kak
|
2012-07-31 16:22:57 +04:00
|
|
|
}
|
2012-06-14 17:21:22 +04:00
|
|
|
|
2019-04-10 06:54:19 +03:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=kak %~
|
2019-03-13 08:24:33 +03:00
|
|
|
require-module kak
|
2019-04-10 06:54:19 +03:00
|
|
|
|
|
|
|
set-option window static_words %opt{kak_static_words}
|
|
|
|
|
2020-08-15 06:43:43 +03:00
|
|
|
hook window InsertChar \n -group kak-insert kak-insert-on-new-line
|
2019-04-10 06:54:19 +03:00
|
|
|
hook window InsertChar \n -group kak-indent kak-indent-on-new-line
|
|
|
|
hook window InsertChar [>)}\]] -group kak-indent kak-indent-on-closing-matching
|
|
|
|
hook window InsertChar (?![[{(<>)}\]])[^\s\w] -group kak-indent kak-indent-on-closing-char
|
|
|
|
# cleanup trailing whitespaces on current line insert end
|
2022-03-17 01:20:07 +03:00
|
|
|
hook window ModeChange pop:insert:.* -group kak-trim-indent %{ try %{ execute-keys -draft <semicolon> x s ^\h+$ <ret> d } }
|
2019-04-10 06:54:19 +03:00
|
|
|
set-option buffer extra_word_chars '_' '-'
|
|
|
|
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window kak-.+ }
|
|
|
|
~
|
|
|
|
|
|
|
|
hook -group kak-highlight global WinSetOption filetype=kak %{
|
|
|
|
add-highlighter window/kakrc ref kakrc
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/kakrc }
|
2019-03-13 08:24:33 +03:00
|
|
|
}
|
|
|
|
|
2019-04-13 22:57:57 +03:00
|
|
|
provide-module kak %§
|
2019-03-13 08:24:33 +03:00
|
|
|
|
|
|
|
require-module sh
|
|
|
|
|
2017-01-02 07:31:35 +03:00
|
|
|
# Highlighters & Completion
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-06-28 12:50:23 +03:00
|
|
|
add-highlighter shared/kakrc regions
|
|
|
|
add-highlighter shared/kakrc/code default-region group
|
2018-07-02 13:59:12 +03:00
|
|
|
add-highlighter shared/kakrc/comment region (^|\h)\K# $ fill comment
|
|
|
|
add-highlighter shared/kakrc/double_string region -recurse %{(?<!")("")+(?!")} %{(^|\h)\K"} %{"(?!")} group
|
|
|
|
add-highlighter shared/kakrc/single_string region -recurse %{(?<!')('')+(?!')} %{(^|\h)\K'} %{'(?!')} group
|
|
|
|
add-highlighter shared/kakrc/shell1 region -recurse '\{' '(^|\h)\K%?%sh\{' '\}' ref sh
|
|
|
|
add-highlighter shared/kakrc/shell2 region -recurse '\(' '(^|\h)\K%?%sh\(' '\)' ref sh
|
|
|
|
add-highlighter shared/kakrc/shell3 region -recurse '\[' '(^|\h)\K%?%sh\[' '\]' ref sh
|
|
|
|
add-highlighter shared/kakrc/shell4 region -recurse '<' '(^|\h)\K%?%sh<' '>' ref sh
|
2018-10-06 03:49:14 +03:00
|
|
|
add-highlighter shared/kakrc/shell5 region -recurse '\{' '(^|\h)\K-shell-script-(completion|candidates)\h+%\{' '\}' ref sh
|
|
|
|
add-highlighter shared/kakrc/shell6 region -recurse '\(' '(^|\h)\K-shell-script-(completion|candidates)\h+%\(' '\)' ref sh
|
|
|
|
add-highlighter shared/kakrc/shell7 region -recurse '\[' '(^|\h)\K-shell-script-(completion|candidates)\h+%\[' '\]' ref sh
|
|
|
|
add-highlighter shared/kakrc/shell8 region -recurse '<' '(^|\h)\K-shell-script-(completion|candidates)\h+%<' '>' ref sh
|
2014-06-11 01:02:42 +04:00
|
|
|
|
2018-05-07 00:29:52 +03:00
|
|
|
evaluate-commands %sh{
|
2016-03-14 15:08:51 +03:00
|
|
|
# Grammar
|
2020-11-17 15:52:18 +03:00
|
|
|
keywords="add-highlighter alias arrange-buffers buffer buffer-next buffer-previous catch
|
2022-02-22 12:14:47 +03:00
|
|
|
change-directory colorscheme debug declare-option declare-user-mode define-command complete-command
|
2020-11-17 15:52:18 +03:00
|
|
|
delete-buffer delete-buffer! echo edit edit! enter-user-mode evaluate-commands execute-keys
|
|
|
|
fail hook info kill kill! map menu nop on-key prompt provide-module quit quit!
|
2020-11-17 15:58:58 +03:00
|
|
|
remove-highlighter remove-hooks rename-buffer rename-client rename-session require-module
|
|
|
|
select set-face set-option set-register source trigger-user-hook try
|
2020-11-17 15:51:30 +03:00
|
|
|
unalias unmap unset-face unset-option update-option
|
|
|
|
write write! write-all write-all-quit write-quit write-quit!"
|
2017-10-23 05:56:45 +03:00
|
|
|
attributes="global buffer window current
|
|
|
|
normal insert menu prompt goto view user object
|
2018-07-08 12:11:04 +03:00
|
|
|
number-lines show-matching show-whitespaces fill regex dynregex group flag-lines
|
2018-06-30 02:49:57 +03:00
|
|
|
ranges line column wrap ref regions region default-region replace-ranges"
|
2020-10-23 14:26:15 +03:00
|
|
|
types="int bool str regex int-list str-list completions line-specs range-specs str-to-str-map"
|
2018-03-25 10:27:12 +03:00
|
|
|
values="default black red green yellow blue magenta cyan white yes no false true"
|
2017-10-23 05:56:45 +03:00
|
|
|
|
2018-07-19 11:32:29 +03:00
|
|
|
join() { sep=$2; eval set -- $1; IFS="$sep"; echo "$*"; }
|
2016-03-14 15:08:51 +03:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2019-04-10 06:54:19 +03:00
|
|
|
printf %s\\n "declare-option str-list kak_static_words $(join "${keywords} ${attributes} ${types} ${values}" ' ')'"
|
2016-03-14 15:08:51 +03:00
|
|
|
|
2017-10-21 11:06:48 +03:00
|
|
|
# Highlight keywords (which are always surrounded by whitespace)
|
2018-06-25 15:04:33 +03:00
|
|
|
printf '%s\n' "add-highlighter shared/kakrc/code/keywords regex (?:\s|\A)\K($(join "${keywords}" '|'))(?:(?=\s)|\z) 0:keyword
|
|
|
|
add-highlighter shared/kakrc/code/attributes regex (?:\s|\A)\K($(join "${attributes}" '|'))(?:(?=\s)|\z) 0:attribute
|
|
|
|
add-highlighter shared/kakrc/code/types regex (?:\s|\A)\K($(join "${types}" '|'))(?:(?=\s)|\z) 0:type
|
|
|
|
add-highlighter shared/kakrc/code/values regex (?:\s|\A)\K($(join "${values}" '|'))(?:(?=\s)|\z) 0:value"
|
2016-03-14 15:08:51 +03:00
|
|
|
}
|
|
|
|
|
2020-07-18 06:45:27 +03:00
|
|
|
add-highlighter shared/kakrc/code/colors regex \b(rgb:[0-9a-fA-F]{6}|rgba:[0-9a-fA-F]{8})\b 0:value
|
2020-10-23 14:31:38 +03:00
|
|
|
add-highlighter shared/kakrc/code/numbers regex \b\d+\b 0:value
|
2014-06-11 01:02:42 +04:00
|
|
|
|
2018-06-25 15:04:33 +03:00
|
|
|
add-highlighter shared/kakrc/double_string/fill fill string
|
|
|
|
add-highlighter shared/kakrc/double_string/escape regex '""' 0:default+b
|
|
|
|
add-highlighter shared/kakrc/single_string/fill fill string
|
|
|
|
add-highlighter shared/kakrc/single_string/escape regex "''" 0:default+b
|
2012-06-14 17:21:22 +04:00
|
|
|
|
2017-01-02 07:31:35 +03:00
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2020-08-15 06:43:43 +03:00
|
|
|
define-command -hidden kak-insert-on-new-line %~
|
2020-07-28 06:21:33 +03:00
|
|
|
evaluate-commands -draft -itersel %=
|
2017-01-11 16:56:48 +03:00
|
|
|
# copy '#' comment prefix and following white spaces
|
2022-03-17 01:20:07 +03:00
|
|
|
try %{ execute-keys -draft k x s ^\h*#\h* <ret> y jgh P }
|
2020-08-15 06:43:43 +03:00
|
|
|
=
|
|
|
|
~
|
|
|
|
|
|
|
|
define-command -hidden kak-indent-on-new-line %~
|
|
|
|
evaluate-commands -draft -itersel %=
|
2017-01-02 07:31:35 +03:00
|
|
|
# preserve previous line indent
|
2019-10-22 12:02:06 +03:00
|
|
|
try %{ execute-keys -draft <semicolon> K <a-&> }
|
2017-01-02 07:31:35 +03:00
|
|
|
# cleanup trailing whitespaces from previous line
|
2022-03-17 01:20:07 +03:00
|
|
|
try %{ execute-keys -draft k x s \h+$ <ret> d }
|
2018-09-07 00:56:50 +03:00
|
|
|
# indent after line ending with %\w*[^\s\w]
|
2022-03-17 01:20:07 +03:00
|
|
|
try %{ execute-keys -draft k x <a-k> \%\w*[^\s\w]$ <ret> j <a-gt> }
|
2020-07-28 06:21:33 +03:00
|
|
|
# deindent closing brace when after cursor
|
2022-03-17 01:20:07 +03:00
|
|
|
try %_ execute-keys -draft -itersel x <a-k> ^\h*([>)}\]]) <ret> gh / <c-r>1 <ret> m <a-S> 1<a-&> _
|
2020-07-28 06:37:49 +03:00
|
|
|
# deindent closing char(s)
|
2022-03-17 01:20:07 +03:00
|
|
|
try %{ execute-keys -draft -itersel x <a-k> ^\h*([^\s\w]) <ret> gh / <c-r>1 <ret> <a-?> <c-r>1 <ret> <a-T>% <a-k> \w*<c-r>1$ <ret> <a-S> 1<a-&> }
|
2020-07-28 06:21:33 +03:00
|
|
|
=
|
|
|
|
~
|
2017-01-02 07:31:35 +03:00
|
|
|
|
2018-08-31 03:10:06 +03:00
|
|
|
define-command -hidden kak-indent-on-closing-matching %~
|
|
|
|
# align to opening matching brace when alone on a line
|
2018-09-17 06:53:23 +03:00
|
|
|
try %= execute-keys -draft -itersel <a-h><a-k>^\h*\Q %val{hook_param} \E$<ret> mGi s \A|.\z<ret> 1<a-&> =
|
2018-08-31 03:10:06 +03:00
|
|
|
~
|
|
|
|
|
|
|
|
define-command -hidden kak-indent-on-closing-char %{
|
|
|
|
# align to opening matching character when alone on a line
|
2018-09-17 06:53:23 +03:00
|
|
|
try %{ execute-keys -draft -itersel <a-h><a-k>^\h*\Q %val{hook_param} \E$<ret>gi<a-f> %val{hook_param} <a-T>%<a-k>\w*\Q %val{hook_param} \E$<ret> s \A|.\z<ret> gi 1<a-&> }
|
2018-08-31 03:10:06 +03:00
|
|
|
}
|
|
|
|
|
2019-04-13 22:57:57 +03:00
|
|
|
§
|