2015-07-21 10:22:57 +02:00
|
|
|
# https://golang.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2015-09-04 13:51:36 +02:00
|
|
|
hook global BufCreate .*\.go %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype go
|
2015-07-21 10:22:57 +02:00
|
|
|
}
|
|
|
|
|
2019-04-10 05:54:19 +02:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=go %{
|
2019-03-13 06:24:33 +01:00
|
|
|
require-module go
|
2019-04-10 05:54:19 +02:00
|
|
|
|
|
|
|
set-option window static_words %opt{go_static_words}
|
|
|
|
|
|
|
|
# cleanup trailing whitespaces when exiting insert mode
|
2019-10-16 11:19:43 +02:00
|
|
|
hook window ModeChange pop:insert:.* -group go-trim-indent %{ try %{ execute-keys -draft <a-x>s^\h+$<ret>d } }
|
2019-04-10 05:54:19 +02:00
|
|
|
hook window InsertChar \n -group go-indent go-indent-on-new-line
|
|
|
|
hook window InsertChar \{ -group go-indent go-indent-on-opening-curly-brace
|
|
|
|
hook window InsertChar \} -group go-indent go-indent-on-closing-curly-brace
|
2020-09-04 20:21:35 +02:00
|
|
|
hook window InsertChar \n -group go-insert go-insert-on-new-line
|
2019-04-10 05:54:19 +02:00
|
|
|
|
2020-09-06 14:15:53 +02:00
|
|
|
alias window alt go-alternative-file
|
|
|
|
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{
|
|
|
|
remove-hooks window go-.+
|
|
|
|
unalias window alt go-alternative-file
|
|
|
|
}
|
2019-04-10 05:54:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hook -group go-highlight global WinSetOption filetype=go %{
|
|
|
|
add-highlighter window/go ref go
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/go }
|
2019-03-13 06:24:33 +01:00
|
|
|
}
|
|
|
|
|
2019-04-13 21:57:57 +02:00
|
|
|
provide-module go %§
|
2019-03-13 06:24:33 +01:00
|
|
|
|
2015-07-21 10:22:57 +02:00
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/go regions
|
|
|
|
add-highlighter shared/go/code default-region group
|
2018-07-02 12:59:12 +02:00
|
|
|
add-highlighter shared/go/back_string region '`' '`' fill string
|
|
|
|
add-highlighter shared/go/double_string region '"' (?<!\\)(\\\\)*" fill string
|
|
|
|
add-highlighter shared/go/single_string region "'" (?<!\\)(\\\\)*' fill string
|
|
|
|
add-highlighter shared/go/comment region /\* \*/ fill comment
|
|
|
|
add-highlighter shared/go/comment_line region '//' $ fill comment
|
2015-07-21 10:22:57 +02:00
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/go/code/ regex %{-?([0-9]*\.(?!0[xX]))?\b([0-9]+|0[xX][0-9a-fA-F]+)\.?([eE][+-]?[0-9]+)?i?\b} 0:value
|
2016-03-14 13:08:51 +01:00
|
|
|
|
2018-05-06 23:29:52 +02:00
|
|
|
evaluate-commands %sh{
|
2016-03-14 13:08:51 +01:00
|
|
|
# Grammar
|
2019-04-10 05:54:19 +02:00
|
|
|
keywords='break default func interface select case defer go map struct
|
|
|
|
chan else goto package switch const fallthrough if range type
|
|
|
|
continue for import return var'
|
|
|
|
types='bool byte chan complex128 complex64 error float32 float64 int int16 int32
|
|
|
|
int64 int8 interface intptr map rune string struct uint uint16 uint32 uint64 uint8'
|
|
|
|
values='false true nil iota'
|
|
|
|
functions='append cap close complex copy delete imag len make new panic print println real recover'
|
|
|
|
|
|
|
|
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
|
2019-04-10 05:54:19 +02:00
|
|
|
printf %s\\n "declare-option str-list go_static_words $(join "${keywords} ${attributes} ${types} ${values} ${functions}" ' ')"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "
|
2019-04-10 05:54:19 +02:00
|
|
|
add-highlighter shared/go/code/ regex \b($(join "${keywords}" '|'))\b 0:keyword
|
|
|
|
add-highlighter shared/go/code/ regex \b($(join "${attributes}" '|'))\b 0:attribute
|
|
|
|
add-highlighter shared/go/code/ regex \b($(join "${types}" '|'))\b 0:type
|
|
|
|
add-highlighter shared/go/code/ regex \b($(join "${values}" '|'))\b 0:value
|
|
|
|
add-highlighter shared/go/code/ regex \b($(join "${functions}" '|'))\b 0:builtin
|
2020-09-04 20:21:35 +02:00
|
|
|
add-highlighter shared/go/code/ regex := 0:attribute
|
2016-03-14 13:08:51 +01:00
|
|
|
"
|
|
|
|
}
|
2015-07-21 10:22:57 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2020-09-06 14:15:53 +02:00
|
|
|
define-command go-alternative-file -docstring 'Jump to the alternate file (implementation ↔ test)' %{ evaluate-commands %sh{
|
|
|
|
case $kak_buffile in
|
|
|
|
*_test.go)
|
|
|
|
altfile=${kak_buffile%_test.go}.go
|
|
|
|
test ! -f "$altfile" && echo "fail 'implementation file not found'" && exit
|
|
|
|
;;
|
|
|
|
*.go)
|
|
|
|
altfile=${kak_buffile%.go}_test.go
|
|
|
|
test ! -f "$altfile" && echo "fail 'test file not found'" && exit
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "fail 'alternative file not found'" && exit
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
printf "edit -- '%s'" "$(printf %s "$altfile" | sed "s/'/''/g")"
|
|
|
|
}}
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden go-indent-on-new-line %~
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %=
|
2015-07-21 10:22:57 +02:00
|
|
|
# preserve previous line indent
|
2019-10-22 11:02:06 +02:00
|
|
|
try %{ execute-keys -draft <semicolon>K<a-&> }
|
2015-07-21 10:22:57 +02:00
|
|
|
# indent after lines ending with { or (
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -draft k<a-x> <a-k> [{(]\h*$ <ret> j<a-gt> ]
|
2015-07-21 10:22:57 +02:00
|
|
|
# cleanup trailing white spaces on the previous line
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft k<a-x> s \h+$ <ret>d }
|
2015-07-21 10:22:57 +02:00
|
|
|
# align to opening paren of previous line
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft [( <a-k> \A\([^\n]+\n[^\n]*\n?\z <ret> s \A\(\h*.|.\z <ret> '<a-;>' & }
|
2015-07-21 10:22:57 +02:00
|
|
|
# copy // comments prefix
|
2019-10-22 11:02:06 +02:00
|
|
|
try %{ execute-keys -draft <semicolon><c-s>k<a-x> s ^\h*\K/{2,} <ret> y<c-o>P<esc> }
|
2015-07-21 10:22:57 +02:00
|
|
|
# indent after a switch's case/default statements
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -draft k<a-x> <a-k> ^\h*(case|default).*:$ <ret> j<a-gt> ]
|
2020-07-27 04:46:47 +02:00
|
|
|
# deindent closing brace(s) when after cursor
|
2020-07-29 23:06:27 +02:00
|
|
|
try %[ execute-keys -draft <a-x> <a-k> ^\h*[})] <ret> gh / [})] <ret> m <a-S> 1<a-&> ]
|
2015-07-21 10:22:57 +02:00
|
|
|
=
|
|
|
|
~
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden go-indent-on-opening-curly-brace %[
|
2015-07-21 10:22:57 +02:00
|
|
|
# align indent with opening paren when { is entered on a new line after the closing paren
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -draft -itersel h<a-F>)M <a-k> \A\(.*\)\h*\n\h*\{\z <ret> s \A|.\z <ret> 1<a-&> ]
|
2015-07-21 10:22:57 +02:00
|
|
|
]
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden go-indent-on-closing-curly-brace %[
|
2015-07-21 10:22:57 +02:00
|
|
|
# align to opening curly brace when alone on a line
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -itersel -draft <a-h><a-k>^\h+\}$<ret>hms\A|.\z<ret>1<a-&> ]
|
2015-07-21 10:22:57 +02:00
|
|
|
]
|
|
|
|
|
2020-09-04 20:21:35 +02:00
|
|
|
define-command -hidden go-insert-on-new-line %[
|
|
|
|
evaluate-commands -no-hooks -draft -itersel %[
|
|
|
|
# Wisely add '}'.
|
|
|
|
evaluate-commands -save-regs x %[
|
|
|
|
# Save previous line indent in register x.
|
|
|
|
try %[ execute-keys -draft k<a-x>s^\h+<ret>"xy ] catch %[ reg x '' ]
|
|
|
|
try %[
|
|
|
|
# Validate previous line and that it is not closed yet.
|
|
|
|
execute-keys -draft k<a-x> <a-k>^<c-r>x.*\{\h*\(?\h*$<ret> J}iJ<a-x> <a-K>^<c-r>x(\)?\h*\})$<ret>
|
|
|
|
# Insert closing '}'.
|
|
|
|
execute-keys -draft o<c-r>x}<esc>
|
|
|
|
# Delete trailing '}' on the line below the '{'.
|
|
|
|
execute-keys -draft Xs\}$<ret>d
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
# Wisely add ')'.
|
|
|
|
evaluate-commands -save-regs x %[
|
|
|
|
# Save previous line indent in register x.
|
|
|
|
try %[ execute-keys -draft k<a-x>s^\h+<ret>"xy ] catch %[ reg x '' ]
|
|
|
|
try %[
|
|
|
|
# Validate previous line and that it is not closed yet.
|
|
|
|
execute-keys -draft k<a-x> <a-k>^<c-r>x.*\(\h*$<ret> J}iJ<a-x> <a-K>^<c-r>x(\)\h*\}?)$<ret>
|
|
|
|
# Insert closing ')'.
|
|
|
|
execute-keys -draft o<c-r>x)<esc>
|
|
|
|
# Delete trailing ')' on the line below the '('.
|
|
|
|
execute-keys -draft Xs\)\h*\}?\h*$<ret>d
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
2019-04-13 21:57:57 +02:00
|
|
|
§
|