annotate runtime/syntax/whitespace.vim @ 7189:0b4387f570ec
v7.4.904
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Nov 2 12:50:55 2015 +0100
patch 7.4.904
Problem: Vim does not provide .desktop files.
Solution: Include and install .desktop files. (James McCoy, closes #455)
author |
Christian Brabandt <cb@256bit.org> |
date |
Mon, 02 Nov 2015 13:00:04 +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
|