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

Merge pull request #2430 from stfl/quickfix

add mapping to clear quickfix
This commit is contained in:
Wang Shidong 2019-01-07 19:18:22 +08:00 committed by GitHub
commit 5f5e695b0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -189,6 +189,10 @@ function! SpaceVim#default#keyBindings() abort
\ 'Toggle recording', \ 'Toggle recording',
\ '', \ '',
\ 'Toggle recording mode') \ 'Toggle recording mode')
call SpaceVim#mapping#def('nnoremap <silent>', '<Leader>qc', ':call setqflist([])<CR>',
\ 'Clear quickfix list',
\ '',
\ 'Clear quickfix')
" Use Ctrl+* to jump between windows " Use Ctrl+* to jump between windows
nnoremap <silent><C-Right> :<C-u>wincmd l<CR> nnoremap <silent><C-Right> :<C-u>wincmd l<CR>