Mercurial > vim
annotate runtime/syntax/ctrlh.vim @ 11698:4f59d2a66bf7 v8.0.0732
patch 8.0.0732: when updating a buffer modeless selection is lost
commit https://github.com/vim/vim/commit/80dd3f9d41ce2ff6ab3544cdb266627bbdfc34a6
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jul 19 12:51:52 2017 +0200
patch 8.0.0732: when updating a buffer modeless selection is lost
Problem: When updating a buffer for a callback the modeless selection is
lost.
Solution: Do not insert or delete screen lines when redrawing for a callback
and there is a modeless selection.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 19 Jul 2017 13:00:03 +0200 |
parents | 7033303ea0c0 |
children | 4027cefc2aab |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: CTRL-H (e.g., ASCII manpages) | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
344 | 4 " Last Change: 2005 Jun 20 |
7 | 5 |
6 " Existing syntax is kept, this file can be used as an addition | |
7 | |
8 " Recognize underlined text: _^Hx | |
9 syntax match CtrlHUnderline /_\b./ contains=CtrlHHide | |
10 | |
11 " Recognize bold text: x^Hx | |
12 syntax match CtrlHBold /\(.\)\b\1/ contains=CtrlHHide | |
13 | |
14 " Hide the CTRL-H (backspace) | |
15 syntax match CtrlHHide /.\b/ contained | |
16 | |
17 " Define the default highlighting. | |
344 | 18 " Only used when an item doesn't have highlighting yet |
19 hi def link CtrlHHide Ignore | |
20 hi def CtrlHUnderline term=underline cterm=underline gui=underline | |
21 hi def CtrlHBold term=bold cterm=bold gui=bold | |
7 | 22 |
23 " vim: ts=8 |