Mercurial > vim
view runtime/compiler/eruby.vim @ 2150:4269a0673478 v7.2.432
updated for version 7.2.432
Problem: When menus are translated they can only be found by the translated
name. That makes ":emenu" difficult to use.
Solution: Store the untranslated name and use it for completion and :emenu.
(Edward L. Fox / Liang Peng / Bezetek James)
author | Bram Moolenaar <bram@zimbu.org> |
---|---|
date | Fri, 14 May 2010 22:24:40 +0200 |
parents | 7bc41231fbc7 |
children | dd5c1983e355 |
line wrap: on
line source
" Vim compiler file " Language: eRuby " Maintainer: Doug Kearns <dougkearns@gmail.com> " Info: $Id: eruby.vim,v 1.7 2008/06/29 04:18:42 tpope 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: