mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-19 09:33:44 +08:00
46 lines
1.5 KiB
VimL
46 lines
1.5 KiB
VimL
"=============================================================================
|
|
" chapel.vim --- chapel language support
|
|
" Copyright (c) 2016-2022 Wang Shidong & Contributors
|
|
" Author: Wang Shidong < wsdjeg@outlook.com >
|
|
" URL: https://spacevim.org
|
|
" License: GPLv3
|
|
"=============================================================================
|
|
|
|
""
|
|
" @section lang#chapel, layers-lang-chapel
|
|
" @parentsection layers
|
|
" This layer is for chapel development, disabled by default, to enable this
|
|
" layer, add following snippet to your SpaceVim configuration file.
|
|
" >
|
|
" [[layers]]
|
|
" name = 'lang#chapel'
|
|
" <
|
|
"
|
|
" @subsection Key bindings
|
|
" >
|
|
" Mode Key Function
|
|
" ---------------------------------------------
|
|
" normal SPC l r compile and run current file
|
|
" <
|
|
"
|
|
|
|
function! SpaceVim#layers#lang#chapel#plugins() abort
|
|
let plugins = []
|
|
call add(plugins, ['wsdjeg/vim-chapel', { 'merged' : 0}])
|
|
return plugins
|
|
endfunction
|
|
|
|
function! SpaceVim#layers#lang#chapel#config() abort
|
|
call SpaceVim#plugins#runner#reg_runner('chapel', ['chpl -o #TEMP# %s', '#TEMP#'])
|
|
call SpaceVim#mapping#space#regesit_lang_mappings('chapel', function('s:language_specified_mappings'))
|
|
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#chapel#health() abort
|
|
call SpaceVim#layers#lang#chapel#plugins()
|
|
call SpaceVim#layers#lang#chapel#config()
|
|
return 1
|
|
endfunction
|