Mercurial > vim
view runtime/compiler/rubyunit.vim @ 9826:f17ba1c9d209 v7.4.2188
commit https://github.com/vim/vim/commit/c9fb77c69244870a97384152f20845665c19fe39
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 9 21:51:40 2016 +0200
patch 7.4.2188
Problem: Completion does not work properly with some plugins.
Solution: Revert the part related to typing CTRL-E. (closes https://github.com/vim/vim/issues/972)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 09 Aug 2016 22:00:07 +0200 |
parents | a5352e73dc00 |
children | 43efa4f5a8ea |
line wrap: on
line source
" Vim compiler file " Language: Test::Unit - Ruby Unit Testing Framework " Maintainer: Doug Kearns <dougkearns@gmail.com> " URL: https://github.com/vim-ruby/vim-ruby " Release Coordinator: Doug Kearns <dougkearns@gmail.com> if exists("current_compiler") finish endif let current_compiler = "rubyunit" 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=testrb CompilerSet errorformat=\%W\ %\\+%\\d%\\+)\ Failure:, \%C%m\ [%f:%l]:, \%E\ %\\+%\\d%\\+)\ Error:, \%C%m:, \%C\ \ \ \ %f:%l:%.%#, \%C%m, \%Z\ %#, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save " vim: nowrap sw=2 sts=2 ts=8: