Mercurial > vim
annotate runtime/compiler/rst.vim @ 13206:53f0c469dfc6 v8.0.1477
patch 8.0.1477: redraw flicker when moving the mouse outside of terminal window
commit https://github.com/vim/vim/commit/d317b38a4dbcdbd4cf587cf78cc1f4289374214e
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 8 22:33:31 2018 +0100
patch 8.0.1477: redraw flicker when moving the mouse outside of terminal window
Problem: Redraw flicker when moving the mouse outside of terminal window.
Solution: Instead of updating the cursor color and shape every time leaving
and entering a terminal window, only update when different from
the previously used cursor.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 08 Feb 2018 22:45:05 +0100 |
parents | 4aae8146c21f |
children | e1df51f68736 |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
11347 | 2 " Compiler: sphinx >= 1.0.8, http://www.sphinx-doc.org |
3 " Description: reStructuredText Documentation Format | |
11062 | 4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> |
11347 | 5 " Latest Revision: 2017-03-31 |
7 | 6 |
7 if exists("current_compiler") | |
8 finish | |
9 endif | |
10 let current_compiler = "rst" | |
11 | |
12 let s:cpo_save = &cpo | |
3237 | 13 set cpo&vim |
7 | 14 |
11347 | 15 if exists(":CompilerSet") != 2 |
16 command -nargs=* CompilerSet setlocal <args> | |
17 endif | |
18 | |
19 CompilerSet errorformat= | |
20 \%f\\:%l:\ %tEBUG:\ %m, | |
21 \%f\\:%l:\ %tNFO:\ %m, | |
22 \%f\\:%l:\ %tARNING:\ %m, | |
23 \%f\\:%l:\ %tRROR:\ %m, | |
24 \%f\\:%l:\ %tEVERE:\ %m, | |
25 \%f\\:%s:\ %tARNING:\ %m, | |
26 \%f\\:%s:\ %tRROR:\ %m, | |
7 | 27 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f', |
28 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f', | |
29 \%DMaking\ %*\\a\ in\ %f | |
30 | |
31 let &cpo = s:cpo_save | |
32 unlet s:cpo_save |