2020-11-29 09:01:41 -05:00
|
|
|
function! myspacevim#before() abort
|
|
|
|
set clipboard=unnamedplus
|
2022-06-14 13:17:23 -04:00
|
|
|
" inoremap <C-a> <Home>
|
|
|
|
" inoremap <C-e> <End>
|
2020-11-29 09:01:41 -05:00
|
|
|
|
2022-06-14 13:17:23 -04:00
|
|
|
" call SpaceVim#custom#SPCGroupName(['b'], '+MyCustom')
|
|
|
|
" call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1)
|
|
|
|
" call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1)
|
2020-11-29 09:01:41 -05:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! myspacevim#after() abort
|
|
|
|
set clipboard=unnamedplus
|
2022-06-14 13:17:23 -04:00
|
|
|
" inoremap <C-a> <Home>
|
|
|
|
" inoremap <C-e> <End>
|
2020-11-29 09:01:41 -05:00
|
|
|
call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1)
|
|
|
|
call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1)
|
|
|
|
endfunction
|
2020-11-29 09:01:41 -05:00
|
|
|
|