122 lines
4.2 KiB
VimL
122 lines
4.2 KiB
VimL
|
"=============================================================================
|
||
|
" coffeescript.vim --- lang#coffeescript layer
|
||
|
" Copyright (c) 2016-2023 Wang Shidong & Contributors
|
||
|
" Author: Wang Shidong < wsdjeg@outlook.com >
|
||
|
" URL: https://spacevim.org
|
||
|
" License: GPLv3
|
||
|
"=============================================================================
|
||
|
|
||
|
""
|
||
|
" @section lang#coffeescript, layers-lang-coffeescript
|
||
|
" @parentsection layers
|
||
|
" This layer is for coffeescript development, disabled by default, to enable this
|
||
|
" layer, add following snippet to your SpaceVim configuration file.
|
||
|
" >
|
||
|
" [[layers]]
|
||
|
" name = 'lang#coffeescript'
|
||
|
" <
|
||
|
"
|
||
|
" @subsection Key bindings
|
||
|
" >
|
||
|
" Mode Key Function
|
||
|
" ---------------------------------------------
|
||
|
" normal SPC l r run current file
|
||
|
" <
|
||
|
"
|
||
|
" This layer also provides REPL support for coffeescript, the key bindings are:
|
||
|
" >
|
||
|
" Key Function
|
||
|
" ---------------------------------------------
|
||
|
" SPC l s i Start a inferior REPL process
|
||
|
" SPC l s b send whole buffer
|
||
|
" SPC l s l send current line
|
||
|
" SPC l s s send selection text
|
||
|
" <
|
||
|
|
||
|
|
||
|
if exists('s:coffee_interpreter')
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
let s:SYS = SpaceVim#api#import('system')
|
||
|
|
||
|
let s:coffee_interpreter = 'coffee' . (s:SYS.isWindows ? '.CMD' : '')
|
||
|
|
||
|
function! SpaceVim#layers#lang#coffeescript#plugins() abort
|
||
|
let plugins = []
|
||
|
call add(plugins, ['wsdjeg/vim-coffeescript', {'on_ft' : 'coffee'}])
|
||
|
return plugins
|
||
|
endfunction
|
||
|
|
||
|
|
||
|
function! SpaceVim#layers#lang#coffeescript#config() abort
|
||
|
call SpaceVim#plugins#runner#reg_runner('coffee', {
|
||
|
\ 'exe' : s:coffee_interpreter,
|
||
|
\ 'usestdin' : 1,
|
||
|
\ 'opt': ['-s'],
|
||
|
\ })
|
||
|
" call SpaceVim#plugins#runner#reg_runner('coffee', 'coffee %s')
|
||
|
call SpaceVim#plugins#repl#reg('coffee', [s:coffee_interpreter, '-i'])
|
||
|
call SpaceVim#mapping#space#regesit_lang_mappings('coffee', function('s:language_specified_mappings'))
|
||
|
|
||
|
augroup spacevim_layer_lang_coffeescript
|
||
|
autocmd!
|
||
|
autocmd FileType coffee call SpaceVim#util#check_if_expand_tab()
|
||
|
augroup END
|
||
|
|
||
|
endfunction
|
||
|
|
||
|
function! s:language_specified_mappings() abort
|
||
|
call SpaceVim#mapping#space#langSPC('nmap', ['l','r'], 'call SpaceVim#plugins#runner#open()', 'execute current file', 1)
|
||
|
let g:_spacevim_mappings_space.l.s = {'name' : '+Send'}
|
||
|
call SpaceVim#mapping#space#langSPC('nmap', ['l','s', 'i'],
|
||
|
\ 'call SpaceVim#plugins#repl#start("coffee")',
|
||
|
\ '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)
|
||
|
let g:neomake_coffee_enabled_makers = ['coffee', 'coffeelint']
|
||
|
let g:neomake_coffee_coffeelint_maker = {
|
||
|
\ 'args': ['--reporter=csv'],
|
||
|
\ 'errorformat': '%f\,%l\,%\d%#\,%trror\,%m,' .
|
||
|
\ '%f\,%l\,%trror\,%m,' .
|
||
|
\ '%f\,%l\,%\d%#\,%tarn\,%m,' .
|
||
|
\ '%f\,%l\,%tarn\,%m'
|
||
|
\ }
|
||
|
let g:neomake_coffee_coffeelint_remove_invalid_entries = 1
|
||
|
let g:neomake_coffee_coffee_maker = {
|
||
|
\ 'args': [],
|
||
|
\ 'output_stream': 'stderr',
|
||
|
\ 'errorformat': '%f:%l:%c: %m',
|
||
|
\ }
|
||
|
let g:neomake_coffee_coffee_remove_invalid_entries = 1
|
||
|
" \ 'filter_output' : function('s:filter_coffee_lint'),
|
||
|
|
||
|
let g:neoformat_enabled_coffee = ['coffeefmt']
|
||
|
let g:neoformat_coffee_coffeefmt = {
|
||
|
\ 'exe': 'coffee-fmt',
|
||
|
\ 'args': ['--indent_stype', 'space', '-i'],
|
||
|
\ 'stdin': 0,
|
||
|
\ }
|
||
|
endfunction
|
||
|
|
||
|
|
||
|
function! s:filter_coffee_lint(lines, job) abort
|
||
|
let a:lines = []
|
||
|
endfunction
|
||
|
function! SpaceVim#layers#lang#coffeescript#set_variable(var) abort
|
||
|
let s:coffee_interpreter = get(a:var, 'coffee_interpreter', s:coffee_interpreter)
|
||
|
endfunction
|
||
|
|
||
|
function! SpaceVim#layers#lang#coffeescript#health() abort
|
||
|
call SpaceVim#layers#lang#coffeescript#plugins()
|
||
|
call SpaceVim#layers#lang#coffeescript#config()
|
||
|
return 1
|
||
|
endfunction
|