Mercurial > vim
view runtime/compiler/stack.vim @ 19542:9e428147e4ee v8.2.0328
patch 8.2.0328: no redraw when leaving term-normal mode in popup terminal
Commit: https://github.com/vim/vim/commit/e52e0c89d1a6305beca3c01f89a4892dcb43bc71
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Feb 28 22:20:10 2020 +0100
patch 8.2.0328: no redraw when leaving term-normal mode in popup terminal
Problem: No redraw when leaving terminal-normal mode in a terminal popup
window.
Solution: Redraw the popup window. (closes #5708)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 28 Feb 2020 22:30:09 +0100 |
parents | 34fd018452ed |
children |
line wrap: on
line source
" Vim compiler file " Compiler: Haskell Stack " Maintainer: Daniel Campoverde <alx@sillybytes.net> " Latest Revision: 2018-08-27 if exists("current_compiler") finish endif let current_compiler = "stack" let s:cpo_save = &cpo set cpo&vim CompilerSet errorformat= \%-G%.%#:\ build\ %.%#, \%-G%.%#:\ configure\ %.%#, \%-G[%.%#]%.%#, \%-G%.%#preprocessing\ %.%#, \%-G%.%#configuring\ %.%#, \%-G%.%#building\ %.%#, \%-G%.%#linking\ %.%#, \%-G%.%#installing\ %.%#, \%-G%.%#registering\ %.%#, \%-G%.%#:\ copy/register%.%#, \%-G%.%#process\ exited\ %.%#, \%-G%.%#--builddir=%.%#, \%-G--%.%#, \%-G%.%#\|%.%#, \%E%f:%l:%c:\ error:,%+Z\ \ \ \ %m, \%E%f:%l:%c:\ error:\ %m,%-Z, \%W%f:%l:%c:\ warning:,%+Z\ \ \ \ %m, \%W%f:%l:%c:\ warning:\ %m,%-Z, let &cpo = s:cpo_save unlet s:cpo_save