spacevim/autoload/SpaceVim/layers/lang/gosu.vim

50 lines
1.6 KiB
VimL
Raw Normal View History

2024-08-21 14:17:26 +08:00
"=============================================================================
" gosu.vim --- gosu language support
" Copyright (c) 2016-2023 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg@outlook.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section lang#gosu, layers-lang-gosu
" @parentsection layers
" This layer is for gosu development, disabled by default, to enable this
" layer, add following snippet to your SpaceVim configuration file.
" >
" [[layers]]
" name = 'lang#gosu'
" <
"
" @subsection Key bindings
" >
" Mode Key Function
" ---------------------------------------------
" normal SPC l r run current file
" <
function! SpaceVim#layers#lang#gosu#plugins() abort
let plugins = []
call add(plugins, ['wsdjeg/vim-gosu', { 'merged' : 0}])
return plugins
endfunction
function! SpaceVim#layers#lang#gosu#config() abort
call SpaceVim#plugins#runner#reg_runner('gosu', 'gosu %s')
call SpaceVim#mapping#space#regesit_lang_mappings('gosu', function('s:language_specified_mappings'))
" @todo add repl support for gosu
" gosu language do not support repl as I know, here is issue link:
" https://github.com/gosu-lang/gosu-lang/issues/155
endfunction
function! s:language_specified_mappings() abort
call SpaceVim#mapping#space#langSPC('nmap', ['l','r'], 'call SpaceVim#plugins#runner#open()', 'execute current file', 1)
endfunction
function! SpaceVim#layers#lang#gosu#health() abort
call SpaceVim#layers#lang#gosu#plugins()
call SpaceVim#layers#lang#gosu#config()
return 1
endfunction