0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00
vim/runtime/compiler/ruby.vim

69 lines
1.7 KiB
VimL
Raw Normal View History

2004-06-13 20:20:40 +00:00
" Vim compiler file
2006-04-15 20:25:09 +00:00
" Language: Ruby
" Function: Syntax check and/or error reporting
" Maintainer: Tim Hammerquist <timh at rubyforge.org>
2010-05-28 20:54:39 +02:00
" Last Change: 2008 Aug 1
2006-04-15 20:25:09 +00:00
" URL: http://vim-ruby.rubyforge.org
" Anon CVS: See above site
" Release Coordinator: Doug Kearns <dougkearns@gmail.com>
2005-09-16 21:47:57 +00:00
" ----------------------------------------------------------------------------
2004-06-13 20:20:40 +00:00
"
" Changelog:
2005-10-10 20:59:28 +00:00
" 0.2: script saves and restores 'cpoptions' value to prevent problems with
" line continuations
" 0.1: initial release
2004-06-13 20:20:40 +00:00
"
" Contributors:
" Hugh Sasse <hgs@dmu.ac.uk>
2004-12-09 21:34:53 +00:00
" Doug Kearns <djkea2@gus.gscit.monash.edu.au>
2004-06-13 20:20:40 +00:00
"
" Todo:
" match error type %m
"
" Comments:
" I know this file isn't perfect. If you have any questions, suggestions,
" patches, etc., please don't hesitate to let me know.
"
" This is my first experience with 'errorformat' and compiler plugins and
" I welcome any input from more experienced (or clearer-thinking)
" individuals.
2005-09-16 21:47:57 +00:00
" ----------------------------------------------------------------------------
2004-06-13 20:20:40 +00:00
if exists("current_compiler")
finish
endif
let current_compiler = "ruby"
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
command -nargs=* CompilerSet setlocal <args>
endif
let s:cpo_save = &cpo
set cpo-=C
" default settings runs script normally
" add '-c' switch to run syntax check only:
"
" CompilerSet makeprg=ruby\ -wc\ $*
"
" or add '-c' at :make command line:
"
" :make -c %<CR>
"
CompilerSet makeprg=ruby\ -w\ $*
CompilerSet errorformat=
\%+E%f:%l:\ parse\ error,
\%W%f:%l:\ warning:\ %m,
\%E%f:%l:in\ %*[^:]:\ %m,
\%E%f:%l:\ %m,
\%-C%\tfrom\ %f:%l:in\ %.%#,
\%-Z%\tfrom\ %f:%l,
\%-Z%p^,
\%-G%.%#
let &cpo = s:cpo_save
unlet s:cpo_save
2008-06-24 21:16:56 +00:00
" vim: nowrap sw=2 sts=2 ts=8: