Mercurial > vim
view runtime/compiler/rspec.vim @ 12391:438c64b76eef v8.0.1075
patch 8.0.1075: MS-Windows: mouse does not work in terminal
commit https://github.com/vim/vim/commit/1a735d6c9bf4204492b9f9aeba280737fab46ed3
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Sep 8 16:25:54 2017 +0200
patch 8.0.1075: MS-Windows: mouse does not work in terminal
Problem: MS-Windows: mouse does not work in terminal.
Solution: Force the winpty mouse on. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/2072)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 08 Sep 2017 16:30:05 +0200 |
parents | 43efa4f5a8ea |
children | f0f06837a699 |
line wrap: on
line source
" Vim compiler file " Language: RSpec " Maintainer: Tim Pope <vimNOSPAM@tpope.org> " URL: https://github.com/vim-ruby/vim-ruby " Release Coordinator: Doug Kearns <dougkearns@gmail.com> if exists("current_compiler") finish endif let current_compiler = "rspec" 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=rspec CompilerSet errorformat= \%f:%l:\ %tarning:\ %m, \%E%.%#:in\ `load':\ %f:%l:%m, \%E%f:%l:in\ `%*[^']':\ %m, \%-Z\ \ \ \ \ %\\+\#\ %f:%l:%.%#, \%E\ \ %\\d%\\+)%.%#, \%C\ \ \ \ \ %m, \%C%\\s%#, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save " vim: nowrap sw=2 sts=2 ts=8: