Mercurial > vim
view runtime/compiler/irix5_c.vim @ 11814:d3d0db111d17 v8.0.0787
patch 8.0.0787: cannot send CTRL-W command to terminal job
commit https://github.com/vim/vim/commit/1f28b4c6a30d1519a8770d16cbb874735ccced97
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jul 28 13:48:34 2017 +0200
patch 8.0.0787: cannot send CTRL-W command to terminal job
Problem: Cannot send CTRL-W command to terminal job.
Solution: Make CTRL-W . a prefex for sending a key to the job.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 28 Jul 2017 14:00:06 +0200 |
parents | d1e4abe8342c |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: SGI IRIX 5.3 cc " Maintainer: David Harrison <david_jr@users.sourceforge.net> " Last Change: 2012 Apr 30 if exists("current_compiler") finish endif let current_compiler = "irix5_c" let s:keepcpo= &cpo set cpo&vim if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif CompilerSet errorformat=\%Ecfe:\ Error:\ %f\\,\ line\ %l:\ %m, \%Wcfe:\ Warning:\ %n:\ %f\\,\ line\ %l:\ %m, \%Wcfe:\ Warning\ %n:\ %f\\,\ line\ %l:\ %m, \%W(%l)\ \ Warning\ %n:\ %m, \%-Z\ %p^, \-G\\s%#, \%-G%.%# let &cpo = s:keepcpo unlet s:keepcpo