mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-20 01:43:44 +08:00
18 lines
494 B
VimL
18 lines
494 B
VimL
let b:splitjoin_split_callbacks = [
|
|
\ 'sj#go#SplitImports',
|
|
\ 'sj#go#SplitVars',
|
|
\ 'sj#go#SplitFunc',
|
|
\ 'sj#go#SplitFuncCall',
|
|
\ 'sj#go#SplitStruct',
|
|
\ 'sj#go#SplitSingleLineCurlyBracketBlock',
|
|
\ ]
|
|
|
|
let b:splitjoin_join_callbacks = [
|
|
\ 'sj#go#JoinImports',
|
|
\ 'sj#go#JoinVars',
|
|
\ 'sj#go#JoinStructDeclaration',
|
|
\ 'sj#go#JoinStruct',
|
|
\ 'sj#go#JoinFuncCallOrDefinition',
|
|
\ 'sj#go#JoinSingleLineFunctionBody',
|
|
\ ]
|