Mercurial > vim
view runtime/compiler/ghc.vim @ 16998:2ec0f953ec3f v8.1.1499
patch 8.1.1499: ruler not updated after popup window was removed
commit https://github.com/vim/vim/commit/24a5ac5d4dbc4dc5d6d2b7e4dda6612dd9233f5d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jun 8 19:01:18 2019 +0200
patch 8.1.1499: ruler not updated after popup window was removed
Problem: Ruler not updated after popup window was removed.
Solution: use popup_mask in screen_puts().
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 08 Jun 2019 19:15:06 +0200 |
parents | 923e383fa291 |
children |
line wrap: on
line source
" Vim compiler file " Compiler: GHC Haskell Compiler " Maintainer: Daniel Campoverde <alx@sillybytes.net> " Latest Revision: 2016-11-29 if exists("current_compiler") finish endif let current_compiler = "ghc" let s:cpo_save = &cpo set cpo&vim CompilerSet errorformat= \%-G%.%#:\ build, \%-G%.%#preprocessing\ library\ %.%#, \%-G[%.%#]%.%#, \%E%f:%l:%c:\ %m, \%-G--%.%# if exists('g:compiler_ghc_ignore_unmatched_lines') CompilerSet errorformat+=%-G%.%# endif let &cpo = s:cpo_save unlet s:cpo_save