2015-07-21 10:22:57 +02:00
|
|
|
# https://golang.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2015-09-04 13:51:36 +02:00
|
|
|
hook global BufCreate .*\.go %{
|
2016-10-08 21:42:43 +02:00
|
|
|
set buffer filetype go
|
2015-07-21 10:22:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group / regions -default code go \
|
2015-07-21 10:22:57 +02:00
|
|
|
back_string '`' '`' '' \
|
|
|
|
double_string '"' (?<!\\)(\\\\)*" '' \
|
|
|
|
single_string "'" (?<!\\)(\\\\)*' '' \
|
2015-10-21 07:03:33 +02:00
|
|
|
comment /\* \*/ '' \
|
2015-07-21 10:22:57 +02:00
|
|
|
comment '//' $ ''
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /go/back_string fill string
|
|
|
|
add-highlighter -group /go/double_string fill string
|
|
|
|
add-highlighter -group /go/single_string fill string
|
|
|
|
add-highlighter -group /go/comment fill comment
|
2015-07-21 10:22:57 +02:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /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
|
|
|
|
|
|
|
%sh{
|
|
|
|
# Grammar
|
2016-11-28 15:06:26 +01:00
|
|
|
keywords="break|default|func|interface|select|case|defer|go|map|struct"
|
2016-11-11 14:07:45 +01:00
|
|
|
keywords="${keywords}|chan|else|goto|package|switch|const|fallthrough|if|range|type"
|
|
|
|
keywords="${keywords}|continue|for|import|return|var"
|
2016-11-28 15:06:26 +01:00
|
|
|
types="bool|byte|chan|complex128|complex64|error|float32|float64|int|int16|int32"
|
2016-03-14 17:29:11 +01:00
|
|
|
types="${types}|int64|int8|interface|intptr|map|rune|string|struct|uint|uint16|uint32|uint64|uint8"
|
2016-11-11 14:07:45 +01:00
|
|
|
values="false|true|nil|iota"
|
|
|
|
functions="append|cap|close|complex|copy|delete|imag|len|make|new|panic|print|println|real|recover"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2016-10-08 21:42:43 +02:00
|
|
|
printf %s\\n "hook global WinSetOption filetype=go %{
|
2016-11-11 14:07:45 +01:00
|
|
|
set window static_words '${keywords}:${attributes}:${types}:${values}:${functions}'
|
2016-03-17 14:30:14 +01:00
|
|
|
}" | sed 's,|,:,g'
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /go/code regex \b(${keywords})\b 0:keyword
|
|
|
|
add-highlighter -group /go/code regex \b(${attributes})\b 0:attribute
|
|
|
|
add-highlighter -group /go/code regex \b(${types})\b 0:type
|
|
|
|
add-highlighter -group /go/code regex \b(${values})\b 0:value
|
|
|
|
add-highlighter -group /go/code regex \b(${functions})\b 0:builtin
|
2016-03-14 13:08:51 +01:00
|
|
|
"
|
|
|
|
}
|
2015-07-21 10:22:57 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -hidden go-indent-on-new-line %~
|
2015-07-21 10:22:57 +02:00
|
|
|
eval -draft -itersel %=
|
|
|
|
# preserve previous line indent
|
|
|
|
try %{ exec -draft \;K<a-&> }
|
|
|
|
# indent after lines ending with { or (
|
|
|
|
try %[ exec -draft k<a-x> <a-k> [{(]\h*$ <ret> j<a-gt> ]
|
|
|
|
# cleanup trailing white spaces on the previous line
|
|
|
|
try %{ exec -draft k<a-x> s \h+$ <ret>d }
|
|
|
|
# align to opening paren of previous line
|
|
|
|
try %{ exec -draft [( <a-k> \`\([^\n]+\n[^\n]*\n?\' <ret> s \`\(\h*.|.\' <ret> '<a-;>' & }
|
|
|
|
# copy // comments prefix
|
|
|
|
try %{ exec -draft \;<c-s>k<a-x> s ^\h*\K/{2,} <ret> y<c-o><c-o>P<esc> }
|
|
|
|
# indent after a switch's case/default statements
|
|
|
|
try %[ exec -draft k<a-x> <a-k> ^\h*(case|default).*:$ <ret> j<a-gt> ]
|
|
|
|
# indent after if|else|while|for
|
|
|
|
try %[ exec -draft \;<a-F>)MB <a-k> \`(if|else|while|for)\h*\(.*\)\h*\n\h*\n?\' <ret> s \`|.\' <ret> 1<a-&>1<a-space><a-gt> ]
|
|
|
|
=
|
|
|
|
~
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -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
|
|
|
|
try %[ exec -draft -itersel h<a-F>)M <a-k> \`\(.*\)\h*\n\h*\{\' <ret> s \`|.\' <ret> 1<a-&> ]
|
|
|
|
]
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -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
|
|
|
|
try %[ exec -itersel -draft <a-h><a-k>^\h+\}$<ret>hms\`|.\'<ret>1<a-&> ]
|
|
|
|
]
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group go-highlight global WinSetOption filetype=go %{ add-highlighter ref go }
|
2015-07-21 10:22:57 +02:00
|
|
|
|
2016-10-08 21:42:43 +02:00
|
|
|
hook global WinSetOption filetype=go %{
|
2015-07-21 10:22:57 +02:00
|
|
|
# cleanup trailing whitespaces when exiting insert mode
|
2016-10-08 21:42:43 +02:00
|
|
|
hook window InsertEnd .* -group go-hooks %{ try %{ exec -draft <a-x>s^\h+$<ret>d } }
|
2017-01-13 01:56:30 +01: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
|
2015-07-21 10:22:57 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group go-highlight global WinSetOption filetype=(?!go).* %{ remove-highlighter go }
|
2015-09-06 17:14:17 +02:00
|
|
|
|
2016-10-08 21:42:43 +02:00
|
|
|
hook global WinSetOption filetype=(?!go).* %{
|
2017-01-04 01:07:45 +01:00
|
|
|
remove-hooks window go-hooks
|
|
|
|
remove-hooks window go-indent
|
2015-07-21 10:22:57 +02:00
|
|
|
}
|