annotate runtime/syntax/whitespace.vim @ 26151:5a1850512676
v8.2.3607
patch 8.2.3607: GTK3 screen updating is slow
Commit: https://github.com/vim/vim/commit/9459b8d461d6f8345bfa3fb9b3b4297a7950b0bc
Author: presuku <presuku@users.noreply.github.com>
Date: Tue Nov 16 20:03:56 2021 +0000
patch 8.2.3607: GTK3 screen updating is slow
Problem: GTK3 screen updating is slow.
Solution: Remove some of the GTK3-specific code. (closes https://github.com/vim/vim/issues/9052)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 16 Nov 2021 21:15:02 +0100 |
parents |
3fc0f57ecb91 |
children |
|
rev |
line source |
7
|
1 " Simplistic way to make spaces and Tabs visible
|
|
2
|
|
3 " This can be added to an already active syntax.
|
|
4
|
|
5 syn match Space " "
|
|
6 syn match Tab "\t"
|
|
7 if &background == "dark"
|
|
8 hi def Space ctermbg=darkred guibg=#500000
|
|
9 hi def Tab ctermbg=darkgreen guibg=#003000
|
|
10 else
|
|
11 hi def Space ctermbg=lightred guibg=#ffd0d0
|
|
12 hi def Tab ctermbg=lightgreen guibg=#d0ffd0
|
|
13 endif
|