mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 07:50:05 +08:00
21 lines
616 B
VimL
21 lines
616 B
VimL
if !exists('b:splitjoin_split_callbacks')
|
|
let b:splitjoin_split_callbacks = [
|
|
\ 'sj#coffee#SplitTernaryClause',
|
|
\ 'sj#coffee#SplitTripleString',
|
|
\ 'sj#coffee#SplitString',
|
|
\ 'sj#coffee#SplitFunction',
|
|
\ 'sj#coffee#SplitIfClause',
|
|
\ 'sj#coffee#SplitObjectLiteral',
|
|
\ ]
|
|
endif
|
|
|
|
if !exists('b:splitjoin_join_callbacks')
|
|
let b:splitjoin_join_callbacks = [
|
|
\ 'sj#coffee#JoinString',
|
|
\ 'sj#coffee#JoinFunction',
|
|
\ 'sj#coffee#JoinIfElseClause',
|
|
\ 'sj#coffee#JoinIfClause',
|
|
\ 'sj#coffee#JoinObjectLiteral',
|
|
\ ]
|
|
endif
|