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

Add lang#groovy layer

This commit is contained in:
Shidong Wang 2019-06-21 21:41:17 +08:00
parent 1f9a845f16
commit 2875629308

View File

@ -0,0 +1,34 @@
"=============================================================================
" groovy.vim --- groovy support for SpaceVim
" Copyright (c) 2016-2019 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg@outlook.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#groovy#plugin() abort
let plugins = []
call add(plugins, ['wsdjeg/groovy.vim', {'merged' : 0}])
return plugins
endfunction
function! SpaceVim#layers#lang#groovy#config() abort
call SpaceVim#plugins#repl#reg('groovy', 'groovysh')
call SpaceVim#mapping#space#regesit_lang_mappings('groovy', function('s:language_specified_mappings'))
endfunction
function! s:language_specified_mappings() abort
let g:_spacevim_mappings_space.l.s = {'name' : '+Send'}
call SpaceVim#mapping#space#langSPC('nmap', ['l','s', 'i'],
\ 'call SpaceVim#plugins#repl#start("groovy")',
\ 'start REPL process', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','s', 'l'],
\ 'call SpaceVim#plugins#repl#send("line")',
\ 'send line and keep code buffer focused', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','s', 'b'],
\ 'call SpaceVim#plugins#repl#send("buffer")',
\ 'send buffer and keep code buffer focused', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','s', 's'],
\ 'call SpaceVim#plugins#repl#send("selection")',
\ 'send selection and keep code buffer focused', 1)
endfunction