2012-08-16 23:41:25 -04:00
|
|
|
" Language: CoffeeScript
|
2014-10-14 09:30:33 -04:00
|
|
|
" Maintainer: Mick Koch <mick@kochm.co>
|
2012-08-16 23:41:25 -04:00
|
|
|
" URL: http://github.com/kchmck/vim-coffee-script
|
|
|
|
" License: WTFPL
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if exists('b:did_ftplugin')
|
2012-08-16 23:41:25 -04:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
let b:did_ftplugin = 1
|
2013-11-16 14:45:48 -05:00
|
|
|
call coffee#CoffeeSetUpVariables()
|
2012-08-16 23:41:25 -04:00
|
|
|
|
|
|
|
setlocal formatoptions-=t formatoptions+=croql
|
2013-11-16 14:45:48 -05:00
|
|
|
setlocal comments=:# commentstring=#\ %s
|
2012-08-16 23:41:25 -04:00
|
|
|
setlocal omnifunc=javascriptcomplete#CompleteJS
|
2016-07-03 07:53:59 -04:00
|
|
|
setlocal suffixesadd+=.coffee
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Create custom augroups.
|
|
|
|
augroup CoffeeBufUpdate | augroup END
|
|
|
|
augroup CoffeeBufNew | augroup END
|
|
|
|
|
|
|
|
" Enable coffee compiler if a compiler isn't set already.
|
2012-08-16 23:41:25 -04:00
|
|
|
if !len(&l:makeprg)
|
|
|
|
compiler coffee
|
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Switch to the window for buf.
|
|
|
|
function! s:SwitchWindow(buf)
|
|
|
|
exec bufwinnr(a:buf) 'wincmd w'
|
|
|
|
endfunction
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Create a new scratch buffer and return the bufnr of it. After the function
|
|
|
|
" returns, vim remains in the scratch buffer so more set up can be done.
|
|
|
|
function! s:ScratchBufBuild(src, vert, size)
|
|
|
|
if a:size <= 0
|
|
|
|
if a:vert
|
|
|
|
let size = winwidth(bufwinnr(a:src)) / 2
|
|
|
|
else
|
|
|
|
let size = winheight(bufwinnr(a:src)) / 2
|
|
|
|
endif
|
|
|
|
endif
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if a:vert
|
|
|
|
vertical belowright new
|
|
|
|
exec 'vertical resize' size
|
|
|
|
else
|
|
|
|
belowright new
|
|
|
|
exec 'resize' size
|
|
|
|
endif
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
setlocal bufhidden=wipe buftype=nofile nobuflisted noswapfile nomodifiable
|
|
|
|
nnoremap <buffer> <silent> q :hide<CR>
|
|
|
|
|
|
|
|
return bufnr('%')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Replace buffer contents with text and delete the last empty line.
|
|
|
|
function! s:ScratchBufUpdate(buf, text)
|
|
|
|
" Move to the scratch buffer.
|
|
|
|
call s:SwitchWindow(a:buf)
|
|
|
|
|
|
|
|
" Double check we're in the scratch buffer before overwriting.
|
|
|
|
if bufnr('%') != a:buf
|
|
|
|
throw 'unable to change to scratch buffer'
|
|
|
|
endif
|
|
|
|
|
|
|
|
setlocal modifiable
|
|
|
|
silent exec '% delete _'
|
|
|
|
silent put! =a:text
|
|
|
|
silent exec '$ delete _'
|
|
|
|
setlocal nomodifiable
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Parse the output of coffee into a qflist entry for src buffer.
|
|
|
|
function! s:ParseCoffeeError(output, src, startline)
|
|
|
|
" Coffee error is always on first line?
|
|
|
|
let match = matchlist(a:output,
|
|
|
|
\ '^\(\f\+\|\[stdin\]\):\(\d\):\(\d\): error: \(.\{-}\)' . "\n")
|
|
|
|
|
|
|
|
if !len(match)
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Consider the line number from coffee as relative and add it to the beginning
|
|
|
|
" line number of the range the command was called on, then subtract one for
|
|
|
|
" zero-based relativity.
|
|
|
|
call setqflist([{'bufnr': a:src, 'lnum': a:startline + str2nr(match[2]) - 1,
|
|
|
|
\ 'type': 'E', 'col': str2nr(match[3]), 'text': match[4]}], 'r')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Reset source buffer variables.
|
2012-08-16 23:41:25 -04:00
|
|
|
function! s:CoffeeCompileResetVars()
|
2013-11-16 14:45:48 -05:00
|
|
|
" Variables defined in source buffer:
|
|
|
|
" b:coffee_compile_buf: bufnr of output buffer
|
|
|
|
" Variables defined in output buffer:
|
|
|
|
" b:coffee_src_buf: bufnr of source buffer
|
|
|
|
" b:coffee_compile_pos: previous cursor position in output buffer
|
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
let b:coffee_compile_buf = -1
|
2013-11-16 14:45:48 -05:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:CoffeeWatchResetVars()
|
|
|
|
" Variables defined in source buffer:
|
|
|
|
" b:coffee_watch_buf: bufnr of output buffer
|
|
|
|
" Variables defined in output buffer:
|
|
|
|
" b:coffee_src_buf: bufnr of source buffer
|
|
|
|
" b:coffee_watch_pos: previous cursor position in output buffer
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
let b:coffee_watch_buf = -1
|
2012-08-16 23:41:25 -04:00
|
|
|
endfunction
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
function! s:CoffeeRunResetVars()
|
|
|
|
" Variables defined in CoffeeRun source buffer:
|
|
|
|
" b:coffee_run_buf: bufnr of output buffer
|
|
|
|
" Variables defined in CoffeeRun output buffer:
|
|
|
|
" b:coffee_src_buf: bufnr of source buffer
|
|
|
|
" b:coffee_run_pos: previous cursor position in output buffer
|
|
|
|
|
|
|
|
let b:coffee_run_buf = -1
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Clean things up in the source buffers.
|
2012-08-16 23:41:25 -04:00
|
|
|
function! s:CoffeeCompileClose()
|
2013-11-16 14:45:48 -05:00
|
|
|
" Switch to the source buffer if not already in it.
|
|
|
|
silent! call s:SwitchWindow(b:coffee_src_buf)
|
2012-08-16 23:41:25 -04:00
|
|
|
call s:CoffeeCompileResetVars()
|
|
|
|
endfunction
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
function! s:CoffeeWatchClose()
|
|
|
|
silent! call s:SwitchWindow(b:coffee_src_buf)
|
|
|
|
silent! autocmd! CoffeeAuWatch * <buffer>
|
|
|
|
call s:CoffeeWatchResetVars()
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:CoffeeRunClose()
|
|
|
|
silent! call s:SwitchWindow(b:coffee_src_buf)
|
|
|
|
call s:CoffeeRunResetVars()
|
|
|
|
endfunction
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Compile the lines between startline and endline and put the result into buf.
|
|
|
|
function! s:CoffeeCompileToBuf(buf, startline, endline)
|
|
|
|
let src = bufnr('%')
|
|
|
|
let input = join(getline(a:startline, a:endline), "\n")
|
2012-08-16 23:41:25 -04:00
|
|
|
|
|
|
|
" Coffee doesn't like empty input.
|
|
|
|
if !len(input)
|
2013-11-16 14:45:48 -05:00
|
|
|
" Function should still return within output buffer.
|
|
|
|
call s:SwitchWindow(a:buf)
|
2012-08-16 23:41:25 -04:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Pipe lines into coffee.
|
|
|
|
let output = system(g:coffee_compiler .
|
|
|
|
\ ' -scb' .
|
|
|
|
\ ' ' . b:coffee_litcoffee .
|
|
|
|
\ ' 2>&1', input)
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Paste output into output buffer.
|
|
|
|
call s:ScratchBufUpdate(a:buf, output)
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Highlight as JavaScript if there were no compile errors.
|
2012-08-16 23:41:25 -04:00
|
|
|
if v:shell_error
|
2013-11-16 14:45:48 -05:00
|
|
|
call s:ParseCoffeeError(output, src, a:startline)
|
2012-08-16 23:41:25 -04:00
|
|
|
setlocal filetype=
|
|
|
|
else
|
2013-11-16 14:45:48 -05:00
|
|
|
" Clear the quickfix list.
|
|
|
|
call setqflist([], 'r')
|
2012-08-16 23:41:25 -04:00
|
|
|
setlocal filetype=javascript
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Peek at compiled CoffeeScript in a scratch buffer. We handle ranges like this
|
|
|
|
" to prevent the cursor from being moved (and its position saved) before the
|
|
|
|
" function is called.
|
|
|
|
function! s:CoffeeCompile(startline, endline, args)
|
2013-11-16 14:45:48 -05:00
|
|
|
if a:args =~ '\<watch\>'
|
|
|
|
echoerr 'CoffeeCompile watch is deprecated! Please use CoffeeWatch instead'
|
|
|
|
sleep 5
|
|
|
|
call s:CoffeeWatch(a:args)
|
2012-08-16 23:41:25 -04:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Switch to the source buffer if not already in it.
|
|
|
|
silent! call s:SwitchWindow(b:coffee_src_buf)
|
|
|
|
|
|
|
|
" Bail if not in source buffer.
|
2012-08-16 23:41:25 -04:00
|
|
|
if !exists('b:coffee_compile_buf')
|
2013-11-16 14:45:48 -05:00
|
|
|
return
|
2012-08-16 23:41:25 -04:00
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Build the output buffer if it doesn't exist.
|
|
|
|
if bufwinnr(b:coffee_compile_buf) == -1
|
|
|
|
let src = bufnr('%')
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
let vert = exists('g:coffee_compile_vert') || a:args =~ '\<vert\%[ical]\>'
|
|
|
|
let size = str2nr(matchstr(a:args, '\<\d\+\>'))
|
|
|
|
|
|
|
|
" Build the output buffer and save the source bufnr.
|
|
|
|
let buf = s:ScratchBufBuild(src, vert, size)
|
|
|
|
let b:coffee_src_buf = src
|
|
|
|
|
|
|
|
" Set the buffer name.
|
|
|
|
exec 'silent! file [CoffeeCompile ' . src . ']'
|
|
|
|
|
|
|
|
" Clean up the source buffer when the output buffer is closed.
|
|
|
|
autocmd BufWipeout <buffer> call s:CoffeeCompileClose()
|
|
|
|
" Save the cursor when leaving the output buffer.
|
|
|
|
autocmd BufLeave <buffer> let b:coffee_compile_pos = getpos('.')
|
|
|
|
|
|
|
|
" Run user-defined commands on new buffer.
|
|
|
|
silent doautocmd CoffeeBufNew User CoffeeCompile
|
|
|
|
|
|
|
|
" Switch back to the source buffer and save the output bufnr. This also
|
|
|
|
" triggers BufLeave above.
|
|
|
|
call s:SwitchWindow(src)
|
|
|
|
let b:coffee_compile_buf = buf
|
2012-08-16 23:41:25 -04:00
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Fill the scratch buffer.
|
|
|
|
call s:CoffeeCompileToBuf(b:coffee_compile_buf, a:startline, a:endline)
|
|
|
|
" Reset cursor to previous position.
|
|
|
|
call setpos('.', b:coffee_compile_pos)
|
|
|
|
|
|
|
|
" Run any user-defined commands on the scratch buffer.
|
|
|
|
silent doautocmd CoffeeBufUpdate User CoffeeCompile
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Update the scratch buffer and switch back to the source buffer.
|
|
|
|
function! s:CoffeeWatchUpdate()
|
|
|
|
call s:CoffeeCompileToBuf(b:coffee_watch_buf, 1, '$')
|
|
|
|
call setpos('.', b:coffee_watch_pos)
|
|
|
|
silent doautocmd CoffeeBufUpdate User CoffeeWatch
|
|
|
|
call s:SwitchWindow(b:coffee_src_buf)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Continually compile a source buffer.
|
|
|
|
function! s:CoffeeWatch(args)
|
|
|
|
silent! call s:SwitchWindow(b:coffee_src_buf)
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if !exists('b:coffee_watch_buf')
|
2012-08-16 23:41:25 -04:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if bufwinnr(b:coffee_watch_buf) == -1
|
|
|
|
let src = bufnr('%')
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
let vert = exists('g:coffee_watch_vert') || a:args =~ '\<vert\%[ical]\>'
|
|
|
|
let size = str2nr(matchstr(a:args, '\<\d\+\>'))
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
let buf = s:ScratchBufBuild(src, vert, size)
|
|
|
|
let b:coffee_src_buf = src
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
exec 'silent! file [CoffeeWatch ' . src . ']'
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
autocmd BufWipeout <buffer> call s:CoffeeWatchClose()
|
|
|
|
autocmd BufLeave <buffer> let b:coffee_watch_pos = getpos('.')
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
silent doautocmd CoffeeBufNew User CoffeeWatch
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
call s:SwitchWindow(src)
|
|
|
|
let b:coffee_watch_buf = buf
|
|
|
|
endif
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Make sure only one watch autocmd is defined on this buffer.
|
|
|
|
silent! autocmd! CoffeeAuWatch * <buffer>
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
augroup CoffeeAuWatch
|
|
|
|
autocmd InsertLeave <buffer> call s:CoffeeWatchUpdate()
|
|
|
|
autocmd BufWritePost <buffer> call s:CoffeeWatchUpdate()
|
|
|
|
augroup END
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
call s:CoffeeWatchUpdate()
|
|
|
|
endfunction
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Run a snippet of CoffeeScript between startline and endline.
|
|
|
|
function! s:CoffeeRun(startline, endline, args)
|
|
|
|
silent! call s:SwitchWindow(b:coffee_src_buf)
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if !exists('b:coffee_run_buf')
|
|
|
|
return
|
2012-08-16 23:41:25 -04:00
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if bufwinnr(b:coffee_run_buf) == -1
|
|
|
|
let src = bufnr('%')
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
let buf = s:ScratchBufBuild(src, exists('g:coffee_run_vert'), 0)
|
|
|
|
let b:coffee_src_buf = src
|
|
|
|
|
|
|
|
exec 'silent! file [CoffeeRun ' . src . ']'
|
|
|
|
|
|
|
|
autocmd BufWipeout <buffer> call s:CoffeeRunClose()
|
|
|
|
autocmd BufLeave <buffer> let b:coffee_run_pos = getpos('.')
|
|
|
|
|
|
|
|
silent doautocmd CoffeeBufNew User CoffeeRun
|
|
|
|
|
|
|
|
call s:SwitchWindow(src)
|
|
|
|
let b:coffee_run_buf = buf
|
2012-08-16 23:41:25 -04:00
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if a:startline == 1 && a:endline == line('$')
|
|
|
|
let output = system(g:coffee_compiler .
|
|
|
|
\ ' ' . b:coffee_litcoffee .
|
|
|
|
\ ' ' . fnameescape(expand('%')) .
|
|
|
|
\ ' ' . a:args)
|
|
|
|
else
|
|
|
|
let input = join(getline(a:startline, a:endline), "\n")
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if !len(input)
|
|
|
|
return
|
2012-08-16 23:41:25 -04:00
|
|
|
endif
|
2013-11-16 14:45:48 -05:00
|
|
|
|
|
|
|
let output = system(g:coffee_compiler .
|
|
|
|
\ ' -s' .
|
|
|
|
\ ' ' . b:coffee_litcoffee .
|
|
|
|
\ ' ' . a:args, input)
|
|
|
|
endif
|
|
|
|
|
|
|
|
call s:ScratchBufUpdate(b:coffee_run_buf, output)
|
|
|
|
call setpos('.', b:coffee_run_pos)
|
|
|
|
|
|
|
|
silent doautocmd CoffeeBufUpdate User CoffeeRun
|
2012-08-16 23:41:25 -04:00
|
|
|
endfunction
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Run coffeelint on a file, and add any errors between startline and endline
|
2012-08-16 23:41:25 -04:00
|
|
|
" to the quickfix list.
|
|
|
|
function! s:CoffeeLint(startline, endline, bang, args)
|
2013-11-16 14:45:48 -05:00
|
|
|
let input = join(getline(a:startline, a:endline), "\n")
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if !len(input)
|
2012-08-16 23:41:25 -04:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
let output = system(g:coffee_linter .
|
2014-10-14 09:30:33 -04:00
|
|
|
\ ' -s --reporter csv' .
|
2013-11-16 14:45:48 -05:00
|
|
|
\ ' ' . b:coffee_litcoffee .
|
|
|
|
\ ' ' . g:coffee_lint_options .
|
|
|
|
\ ' ' . a:args .
|
|
|
|
\ ' 2>&1', input)
|
|
|
|
|
|
|
|
" Convert output into an array and strip off the csv header.
|
|
|
|
let lines = split(output, "\n")[1:]
|
|
|
|
let buf = bufnr('%')
|
2012-08-16 23:41:25 -04:00
|
|
|
let qflist = []
|
|
|
|
|
|
|
|
for line in lines
|
2013-11-16 14:45:48 -05:00
|
|
|
let match = matchlist(line, '^stdin,\(\d\+\),\d*,\(error\|warn\),\(.\+\)$')
|
2012-08-16 23:41:25 -04:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Ignore unmatched lines.
|
2012-08-16 23:41:25 -04:00
|
|
|
if !len(match)
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" The 'type' will result in either 'E' or 'W'.
|
|
|
|
call add(qflist, {'bufnr': buf, 'lnum': a:startline + str2nr(match[1]) - 1,
|
|
|
|
\ 'type': toupper(match[2][0]), 'text': match[3]})
|
2012-08-16 23:41:25 -04:00
|
|
|
endfor
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Replace the quicklist with our items.
|
2012-08-16 23:41:25 -04:00
|
|
|
call setqflist(qflist, 'r')
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" If not given a bang, jump to first error.
|
2012-08-16 23:41:25 -04:00
|
|
|
if !len(a:bang)
|
|
|
|
silent! cc 1
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
" Complete arguments for Coffee* commands.
|
|
|
|
function! s:CoffeeComplete(cmd, cmdline, cursor)
|
|
|
|
let args = ['vertical']
|
|
|
|
|
|
|
|
" If no partial command, return all possibilities.
|
|
|
|
if !len(a:cmd)
|
|
|
|
return args
|
|
|
|
endif
|
|
|
|
|
|
|
|
let pat = '^' . a:cmd
|
|
|
|
|
|
|
|
for arg in args
|
|
|
|
if arg =~ pat
|
|
|
|
return [arg]
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Set initial state variables if they don't exist
|
2012-08-16 23:41:25 -04:00
|
|
|
if !exists('b:coffee_compile_buf')
|
|
|
|
call s:CoffeeCompileResetVars()
|
|
|
|
endif
|
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if !exists('b:coffee_watch_buf')
|
|
|
|
call s:CoffeeWatchResetVars()
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !exists('b:coffee_run_buf')
|
|
|
|
call s:CoffeeRunResetVars()
|
|
|
|
endif
|
|
|
|
|
2014-10-14 09:30:33 -04:00
|
|
|
command! -buffer -range=% -bar -nargs=* -complete=customlist,s:CoffeeComplete
|
2012-08-16 23:41:25 -04:00
|
|
|
\ CoffeeCompile call s:CoffeeCompile(<line1>, <line2>, <q-args>)
|
2014-10-14 09:30:33 -04:00
|
|
|
command! -buffer -bar -nargs=* -complete=customlist,s:CoffeeComplete
|
2013-11-16 14:45:48 -05:00
|
|
|
\ CoffeeWatch call s:CoffeeWatch(<q-args>)
|
2014-10-14 09:30:33 -04:00
|
|
|
command! -buffer -range=% -bar -nargs=* CoffeeRun
|
2013-11-16 14:45:48 -05:00
|
|
|
\ call s:CoffeeRun(<line1>, <line2>, <q-args>)
|
2014-10-14 09:30:33 -04:00
|
|
|
command! -buffer -range=% -bang -bar -nargs=* CoffeeLint
|
2013-11-16 14:45:48 -05:00
|
|
|
\ call s:CoffeeLint(<line1>, <line2>, <q-bang>, <q-args>)
|