public
Description: My Rails based Vim config. Includes: rails.vim, NERD_tree, snippetsEmu, specky, supertab, fuzzyfinder_textmate and more
Homepage:
Clone URL: git://github.com/goomerko/vim-rails.config.git
vim-rails.config / compiler / eruby.vim
100644 42 lines (34 sloc) 0.953 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
" Vim compiler file
" Language: eRuby
" Maintainer: Doug Kearns <dougkearns@gmail.com>
" Info: $Id: eruby.vim,v 1.6 2006/04/15 12:01:18 dkearns Exp $
" URL: http://vim-ruby.rubyforge.org
" Anon CVS: See above site
" Release Coordinator: Doug Kearns <dougkearns@gmail.com>
 
if exists("current_compiler")
  finish
endif
let current_compiler = "eruby"
 
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
  command -nargs=* CompilerSet setlocal <args>
endif
 
let s:cpo_save = &cpo
set cpo-=C
 
if exists("eruby_compiler") && eruby_compiler == "eruby"
  CompilerSet makeprg=eruby
else
  CompilerSet makeprg=erb
endif
 
CompilerSet errorformat=
    \eruby:\ %f:%l:%m,
    \%+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
 
" vim: nowrap sw=2 sts=2 ts=8 ff=unix: