18 lines
584 B
VimL
18 lines
584 B
VimL
function! myspacevim#before() abort
|
|
set clipboard=unnamedplus
|
|
"inoremap <C-a> <Home>
|
|
"inoremap <C-e> <End>
|
|
|
|
"call SpaceVim#custom#SPCGroupName(['b'], '+MyCustom')
|
|
"call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1)
|
|
"call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1)
|
|
endfunction
|
|
|
|
function! myspacevim#after() abort
|
|
"set clipboard=unnamedplus
|
|
"inoremap <C-a> <Home>
|
|
"inoremap <C-e> <End>
|
|
call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 'sbprevious', 1)
|
|
call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 'sbnext', 1)
|
|
endfunction
|
|
|