annotate runtime/syntax/whitespace.vim @ 32331:2a096f5f527c
v9.0.1497
patch 9.0.1497: the ruler percentage can't be localized
Commit: https://github.com/vim/vim/commit/971cd2b8bc3e3a7faa886162cd7568938c627882
Author: Emir SARI <emir_sari@icloud.com>
Date: Sat Apr 29 12:09:53 2023 +0100
patch 9.0.1497: the ruler percentage can't be localized
Problem: The ruler percentage can't be localized.
Solution: Use a string that can be translated. (Emir Sari, closes https://github.com/vim/vim/issues/12311)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 29 Apr 2023 13:15:04 +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
|