mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-15 19:45:46 +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:
parent
e866f12104
commit
47d94f915d
@ -60,8 +60,8 @@
|
|||||||
"
|
"
|
||||||
" Mode Key Function
|
" 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
|
" normal SPC l g t run gradle test
|
||||||
"
|
"
|
||||||
" Jump key bindings:
|
" Jump key bindings:
|
||||||
@ -239,10 +239,10 @@ function! s:language_specified_mappings() abort
|
|||||||
|
|
||||||
" Gradle
|
" Gradle
|
||||||
let g:_spacevim_mappings_space.l.g = {'name' : '+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"])',
|
\ . string(function('s:execCMD')) . ', ["gradle clean build"])',
|
||||||
\ 'Run gradle clean build', 1)
|
\ '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"])',
|
\ . string(function('s:execCMD')) . ', ["gradle build"])',
|
||||||
\ 'Run gradle build', 1)
|
\ 'Run gradle build', 1)
|
||||||
call SpaceVim#mapping#space#langSPC('nnoremap', ['l','g', 't'], 'call call('
|
call SpaceVim#mapping#space#langSPC('nnoremap', ['l','g', 't'], 'call call('
|
||||||
|
@ -2269,8 +2269,8 @@ MAPPINGS
|
|||||||
|
|
||||||
Mode Key Function
|
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
|
normal SPC l g t run gradle test
|
||||||
|
|
||||||
Jump key bindings:
|
Jump key bindings:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user