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

Change: switch java gradle key binding (#3702)

switch key binding `SPC l g b` with `SPC l g B`
This commit is contained in:
Cheong Hun Kim 2020-08-11 09:51:46 -04:00 committed by GitHub
parent e866f12104
commit 47d94f915d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -60,8 +60,8 @@
"
" Mode Key Function
" -------------------------------------------------------------
" normal SPC l g b run gradle clean build
" normal SPC l g B run gradle build
" normal SPC l g b run gradle build
" normal SPC l g B run gradle clean build
" normal SPC l g t run gradle test
"
" Jump key bindings:
@ -239,10 +239,10 @@ function! s:language_specified_mappings() abort
" Gradle
let g:_spacevim_mappings_space.l.g = {'name' : '+Gradle'}
call SpaceVim#mapping#space#langSPC('nnoremap', ['l','g', 'b'], 'call call('
call SpaceVim#mapping#space#langSPC('nnoremap', ['l','g', 'B'], 'call call('
\ . string(function('s:execCMD')) . ', ["gradle clean build"])',
\ 'Run gradle clean build', 1)
call SpaceVim#mapping#space#langSPC('nnoremap', ['l','g', 'B'], 'call call('
call SpaceVim#mapping#space#langSPC('nnoremap', ['l','g', 'b'], 'call call('
\ . string(function('s:execCMD')) . ', ["gradle build"])',
\ 'Run gradle build', 1)
call SpaceVim#mapping#space#langSPC('nnoremap', ['l','g', 't'], 'call call('

View File

@ -2269,8 +2269,8 @@ MAPPINGS
Mode Key Function
-------------------------------------------------------------
normal SPC l g b run gradle clean build
normal SPC l g B run gradle build
normal SPC l g b run gradle build
normal SPC l g B run gradle clean build
normal SPC l g t run gradle test
Jump key bindings: