diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-08-09 20:13:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-08-09 20:13:35 +0200 |
commit | 6af737fdb4a3594bc4ab8c0e04536af24768437a (patch) | |
tree | e285b3b8a3e5e732d7a9d6f850082c7bda1873a2 /runtime/compiler | |
parent | 4eccc3e301f24a3ea2abc7b77c849327e52e19d6 (diff) | |
download | vim-git-6af737fdb4a3594bc4ab8c0e04536af24768437a.tar.gz |
Runtime file updates. (Tim Pope)
Diffstat (limited to 'runtime/compiler')
-rw-r--r-- | runtime/compiler/cucumber.vim | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/runtime/compiler/cucumber.vim b/runtime/compiler/cucumber.vim new file mode 100644 index 000000000..c020be6e3 --- /dev/null +++ b/runtime/compiler/cucumber.vim @@ -0,0 +1,29 @@ +" Vim compiler file +" Compiler: Cucumber +" Maintainer: Tim Pope <vimNOSPAM@tpope.org> +" Last Change: 2010 Aug 09 + +if exists("current_compiler") + finish +endif +let current_compiler = "cucumber" + +if exists(":CompilerSet") != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal <args> +endif + +let s:cpo_save = &cpo +set cpo-=C + +CompilerSet makeprg=cucumber + +CompilerSet errorformat= + \%W%m\ (Cucumber::Undefined), + \%E%m\ (%.%#), + \%Z%f:%l, + \%Z%f:%l:%.%# + +let &cpo = s:cpo_save +unlet s:cpo_save + +" vim:set sw=2 sts=2: |