1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 01:00:05 +08:00

Add unite func

This commit is contained in:
wsdjeg 2017-01-11 23:14:23 +08:00
parent caf108e3c1
commit a0aa880fa0
2 changed files with 5 additions and 1 deletions

View File

@ -140,7 +140,7 @@ vim's origin local leader can be used in all the mode.
##### windows function leader, default : `s`
windows function leader can only be used in normal mode.
##### unite work flow leader, default : `f`
unite work flow leader can only be used in normal mode.
unite work flow leader can only be used in normal mode. unite leader need unite groups.
#### Unite centric work-flow
- List all the plugins has been installed, fuzzy find what you want,

View File

@ -15,3 +15,7 @@ function! SpaceVim#mapping#leader#defindWindowsLeader(key) abort
call zvim#util#defineMap('nnoremap <silent>', '[Window]q', ':<C-u>close<CR>', 'Close current windows','close')
endif
endfunction
function! SpaceVim#mapping#leader#defindUniteLeader(key) abort
endfunction