annotate runtime/vim16x16.xpm @ 31479:0c0b78aa7ae3
v9.0.1072
patch 9.0.1072: screenpos() column result in fold may be too small
Commit: https://github.com/vim/vim/commit/ba2d19193201277397c25c1f5a134ea042542555
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sun Dec 18 12:28:59 2022 +0000
patch 9.0.1072: screenpos() column result in fold may be too small
Problem: screenpos() column result in fold may be too small.
Solution: Add space of 'number', sign column, etc. (closes https://github.com/vim/vim/issues/11715)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 18 Dec 2022 13:30:05 +0100 |
parents |
3fc0f57ecb91 |
children |
8f04cf65ecff |
rev |
line source |
7
|
1 /* XPM */
|
|
2 static char * vim16x16[] = {
|
|
3 "16 16 8 1",
|
|
4 " c None",
|
|
5 ". c #000000",
|
|
6 "+ c #000080",
|
|
7 "@ c #008000",
|
|
8 "# c #00FF00",
|
|
9 "$ c #808080",
|
|
10 "% c #C0C0C0",
|
|
11 "& c #FFFFFF",
|
|
12 " .....#. .... ",
|
|
13 " .&&&&&.@.&&&&. ",
|
|
14 " .%%%%%$..%%%%$.",
|
|
15 " .%%%$.@.&%%$. ",
|
|
16 " .%%%$..&%%$. ",
|
|
17 " .%%%$.&%%$.. ",
|
|
18 " #.%%%$&%%$.@@. ",
|
|
19 "#@.%%%&%%$.@@@@.",
|
|
20 ".@.%%%%%..@@@@+ ",
|
|
21 " ..%%%%.%...@. ",
|
|
22 " .%%%%...%%.%. ",
|
|
23 " .%%%.%%.%%%%%.",
|
|
24 " .%%$..%.%.%.%.",
|
|
25 " .%$.@.%.%.%.%.",
|
|
26 " .. .%%.%.%.%.",
|
|
27 " .. . . . "};
|