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
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-06-28 11:50:23 +02:00
|
|
|
add-highlighter shared/kakrc regions
|
|
|
|
add-highlighter shared/kakrc/code default-region group
|
2018-07-02 12:59:12 +02: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 02:49:14 +02: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-10 23:02:42 +02:00
|
|
|
|
2018-05-06 23:29:52 +02:00
|
|
|
evaluate-commands %sh{
|
2016-03-14 13:08:51 +01:00
|
|
|
# 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
|
2019-01-02 22:30:34 +01:00
|
|
|
hook remove-hooks define-command echo debug source try catch fail nop
|
2017-11-03 09:09:45 +01:00
|
|
|
set-option unset-option update-option declare-option execute-keys evaluate-commands
|
2018-04-07 07:36:39 +02:00
|
|
|
prompt menu on-key info set-face unset-face rename-client set-register select
|
2019-02-06 20:26:32 +01:00
|
|
|
change-directory rename-session colorscheme declare-user-mode enter-user-mode
|
|
|
|
edit! write! kill! quit! write-quit! delete-buffer!"
|
2017-10-23 04:56:45 +02:00
|
|
|
attributes="global buffer window current
|
|
|
|
normal insert menu prompt goto view user object
|
2018-07-08 11:11:04 +02:00
|
|
|
number-lines show-matching show-whitespaces fill regex dynregex group flag-lines
|
2018-06-30 01:49:57 +02:00
|
|
|
ranges line column wrap ref regions region default-region replace-ranges"
|
2017-10-23 04:56:45 +02:00
|
|
|
types="int bool str regex int-list str-list completions line-specs range-specs"
|
2018-03-25 09:27:12 +02:00
|
|
|
values="default black red green yellow blue magenta cyan white yes no false true"
|
2017-10-23 04:56:45 +02:00
|
|
|
|
2018-07-19 10:32:29 +02:00
|
|
|
join() { sep=$2; eval set -- $1; IFS="$sep"; echo "$*"; }
|
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 %{
|
2018-05-30 15:28:50 +02:00
|
|
|
set-option window static_words $(join "${keywords} ${attributes} ${types} ${values}" ' ')'
|
2018-11-28 08:13:55 +01:00
|
|
|
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)
|
2018-06-25 14:04:33 +02: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 13:08:51 +01:00
|
|
|
}
|
|
|
|
|
2018-06-25 14:04:33 +02:00
|
|
|
add-highlighter shared/kakrc/code/colors regex \brgb:[0-9a-fA-F]{6}\b 0:value
|
|
|
|
add-highlighter shared/kakrc/code/scopes regex \b(global|shared|buffer|window)(?:\b|/) 0:value
|
2014-06-10 23:02:42 +02:00
|
|
|
|
2018-06-25 14:04:33 +02: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 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 }
|
2018-09-06 23:56:50 +02:00
|
|
|
# indent after line ending with %\w*[^\s\w]
|
|
|
|
try %{ execute-keys -draft k <a-x> <a-k> \%\w*[^\s\w]$ <ret> j <a-gt> }
|
2017-01-02 05:31:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-31 02:10:06 +02:00
|
|
|
define-command -hidden kak-indent-on-closing-matching %~
|
|
|
|
# align to opening matching brace when alone on a line
|
2018-09-17 05:53:23 +02: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 02:10:06 +02:00
|
|
|
~
|
|
|
|
|
|
|
|
define-command -hidden kak-indent-on-closing-char %{
|
|
|
|
# align to opening matching character when alone on a line
|
2018-09-17 05:53:23 +02: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 02:10:06 +02:00
|
|
|
}
|
|
|
|
|
2017-01-02 05:31:35 +01:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-11-28 10:39:07 +01:00
|
|
|
hook -group kak-highlight global WinSetOption filetype=kak %{
|
|
|
|
add-highlighter window/kakrc ref kakrc
|
2018-12-11 00:11:35 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/kakrc }
|
2018-11-28 10:39:07 +01:00
|
|
|
}
|
2017-01-02 05:31:35 +01:00
|
|
|
|
2018-08-31 02:10:06 +02:00
|
|
|
hook global WinSetOption filetype=kak %~
|
2017-01-02 05:31:35 +01:00
|
|
|
hook window InsertChar \n -group kak-indent kak-indent-on-new-line
|
2018-08-31 02:10:06 +02:00
|
|
|
hook window InsertChar [>)}\]] -group kak-indent kak-indent-on-closing-matching
|
2018-09-17 02:05:32 +02:00
|
|
|
hook window InsertChar (?![[{(<>)}\]])[^\s\w] -group kak-indent kak-indent-on-closing-char
|
2017-01-02 05:31:35 +01:00
|
|
|
# cleanup trailing whitespaces on current line insert end
|
2018-12-19 10:10:26 +01:00
|
|
|
hook window ModeChange insert:.* -group kak-trim-indent %{ try %{ execute-keys -draft \; <a-x> s ^\h+$ <ret> d } }
|
2018-11-28 08:13:55 +01:00
|
|
|
set-option buffer extra_word_chars '_' '-'
|
2017-01-02 05:31:35 +01:00
|
|
|
|
2018-12-11 00:11:35 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window kak-.+ }
|
2018-11-28 10:39:07 +01:00
|
|
|
~
|