mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-23 02:31:32 +08:00
14 lines
386 B
VimL
Vendored
14 lines
386 B
VimL
Vendored
let b:splitjoin_split_callbacks = [
|
|
\ 'sj#html#SplitTags',
|
|
\ 'sj#html#SplitAttributes',
|
|
\ 'sj#handlebars#SplitBlockComponent',
|
|
\ 'sj#handlebars#SplitComponent',
|
|
\ ]
|
|
|
|
let b:splitjoin_join_callbacks = [
|
|
\ 'sj#html#JoinAttributes',
|
|
\ 'sj#html#JoinTags',
|
|
\ 'sj#handlebars#JoinBlockComponent',
|
|
\ 'sj#handlebars#JoinComponent',
|
|
\ ]
|