This repository has been archived on 2023-02-07. You can view files and clone it, but cannot push or open issues or pull requests.
configs/nvim/compiler/cake.vim
Victor Risgaard 463a18b5ec Configs
2023-02-07 16:14:07 +01:00

16 lines
433 B
VimL

" Language: CoffeeScript
" Maintainer: Mick Koch <kchmck@gmail.com>
" URL: http://github.com/kchmck/vim-coffee-script
" License: WTFPL
if exists('current_compiler')
finish
endif
let current_compiler = 'cake'
call coffee#CoffeeSetUpVariables()
exec 'CompilerSet makeprg=' . escape(g:coffee_cake . ' ' .
\ g:coffee_cake_options . ' $*', ' ')
call coffee#CoffeeSetUpErrorFormat()