annotate runtime/syntax/whitespace.vim @ 17381:8f44c630c366
v8.1.1689
patch 8.1.1689: profiling code is spread out
commit https://github.com/vim/vim/commit/660a10ad41c14363326f83451c3c425201923119
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jul 14 15:48:38 2019 +0200
patch 8.1.1689: profiling code is spread out
Problem: Profiling code is spread out.
Solution: Move more profiling code to profiler.c. (Yegappan Lakshmanan,
closes #4668)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 14 Jul 2019 16:00:06 +0200 |
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
|