1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 23:50:04 +08:00

Remove ovrride mapping <c-h>

This commit is contained in:
wsdjeg 2017-03-13 20:34:55 +08:00
parent 44fd98c03a
commit 67a42ae954
2 changed files with 123 additions and 124 deletions

View File

@ -118,6 +118,7 @@ function! SpaceVim#mapping#leader#defindUniteLeader(key) abort
\ -buffer-name=register register<CR>
nnoremap <silent> [unite]j :<C-u>Unite jump<CR>
nnoremap <silent> [unite]h :<C-u>Unite history/yank<CR>
nnoremap <silent> [unite]<C-h> :<C-u>UniteWithCursorWord help<CR>
nnoremap <silent> [unite]s :<C-u>Unite session<CR>
nnoremap <silent> [unite]o :<C-u>Unite -buffer-name=outline -start-insert -auto-preview -split outline<CR>
nnoremap <silent> [unite]ma

View File

@ -202,8 +202,6 @@ call unite#custom#profile('buffer,buffer_tab', 'context', {
\ 'keep_focus' : 1,
\ })
nnoremap <silent><leader>um :<C-u>Unite -start-insert mapping<CR>
nnoremap <C-h> :<C-u>Unite -start-insert help<CR>
nnoremap <silent> g<C-h> :<C-u>UniteWithCursorWord help<CR>
"" Tag search
""" For searching the word in the cursor in tag file
nnoremap <silent><leader>f :<c-u>Unite tag/include:<C-R><C-w><CR>