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
|
|
|
|
hook window ModeChange insert:.* -group go-trim-indent %{ try %{ execute-keys -draft <a-x>s^\h+$<ret>d } }
|
|
|
|
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
|
|
|
|
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window go-.+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2016-03-14 13:08:51 +01:00
|
|
|
"
|
|
|
|
}
|
2015-07-21 10:22:57 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
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
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft \;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
|
2018-05-13 09:24:37 +02:00
|
|
|
try %{ execute-keys -draft \;<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> ]
|
2015-07-21 10:22:57 +02:00
|
|
|
# indent after if|else|while|for
|
2017-11-03 09:09:45 +01:00
|
|
|
try %[ execute-keys -draft \;<a-F>)MB <a-k> \A(if|else|while|for)\h*\(.*\)\h*\n\h*\n?\z <ret> s \A|.\z <ret> 1<a-&>1<a-space><a-gt> ]
|
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
|
|
|
]
|
|
|
|
|
2019-04-13 21:57:57 +02:00
|
|
|
§
|