# https://golang.org/ # # Detection # ‾‾‾‾‾‾‾‾‾ hook global BufCreate .*\.go %{ set-option buffer filetype go } # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook global WinSetOption filetype=go %{ require-module go set-option window static_words %opt{go_static_words} # cleanup trailing whitespaces when exiting insert mode hook window ModeChange pop:insert:.* -group go-trim-indent %{ try %{ execute-keys -draft xs^\h+$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 window InsertChar \n -group go-comment-insert go-insert-comment-on-new-line hook window InsertChar \n -group go-closing-delimiter-insert go-insert-closing-delimiter-on-new-line alias window alt go-alternative-file hook -once -always window WinSetOption filetype=.* %{ remove-hooks window go-.+ unalias window alt go-alternative-file } } hook -group go-highlight global WinSetOption filetype=go %{ add-highlighter window/go ref go hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/go } } provide-module go %§ # Highlighters # ‾‾‾‾‾‾‾‾‾‾‾‾ add-highlighter shared/go regions add-highlighter shared/go/code default-region group add-highlighter shared/go/back_string region '`' '`' fill string add-highlighter shared/go/double_string region '"' (?K } # cleanup trailing white spaces on the previous line try %{ execute-keys -draft kx s \h+$ d } try %{ try %{ # line comment execute-keys -draft kx s ^\h*// } catch %{ # block comment execute-keys -draft /\* \*/ } } catch %{ # indent after lines with an unclosed { or ( try %< execute-keys -draft [c[({],[)}] \A[({][^\n]*\n[^\n]*\n?\z j > # indent after a switch's case/default statements try %[ execute-keys -draft kx ^\h*(case|default).*:$ j ] # deindent closing brace(s) when after cursor try %[ execute-keys -draft x ^\h*[})] gh / [})] m 1 ] } = ~ define-command -hidden go-indent-on-opening-curly-brace %[ # align indent with opening paren when { is entered on a new line after the closing paren try %[ execute-keys -draft -itersel h)M \A\(.*\)\h*\n\h*\{\z s \A|.\z 1 ] ] define-command -hidden go-indent-on-closing-curly-brace %[ # align to opening curly brace when alone on a line try %[ execute-keys -itersel -draft ^\h+\}$hms\A|.\z1 ] ] define-command -hidden go-insert-comment-on-new-line %[ evaluate-commands -no-hooks -draft -itersel %[ # copy // comments prefix and following white spaces try %{ execute-keys -draft kx s ^\h*\K/{2,}\h* yP } ] ] define-command -hidden go-insert-closing-delimiter-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 kxs^\h+"xy ] catch %[ reg x '' ] try %[ # Validate previous line and that it is not closed yet. execute-keys -draft kx ^x.*\{\h*\(?\h*$ j}iJx ^x\)?\h*\} # Insert closing '}'. execute-keys -draft ox} # Delete trailing '}' on the line below the '{'. execute-keys -draft xs\}$d ] ] # Wisely add ')'. evaluate-commands -save-regs x %[ # Save previous line indent in register x. try %[ execute-keys -draft kxs^\h+"xy ] catch %[ reg x '' ] try %[ # Validate previous line and that it is not closed yet. execute-keys -draft kx ^x.*\(\h*$ J}iJx ^x\) # Insert closing ')'. execute-keys -draft ox) # Delete trailing ')' on the line below the '('. execute-keys -draft xs\)\h*\}?\h*$d ] ] ] ] §