Mercurial > vim
annotate pixmaps/tb_find.xpm @ 33795:4af3b4cd8d2e v9.0.2116
patch 9.0.2116: No test for defining sign without attribute
Commit: https://github.com/vim/vim/commit/e670d17342ea05af253b0452afb980397fa143be
Author: Luuk van Baal <luukvbaal@gmail.com>
Date: Sun Nov 19 10:55:35 2023 +0100
patch 9.0.2116: No test for defining sign without attribute
Problem: No test for defining sign without attribute
Solution: Add test for defining sign without attributes
closes: #13544
Signed-off-by: Luuk van Baal <luukvbaal@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 19 Nov 2023 11:00:10 +0100 |
parents | 3fc0f57ecb91 |
children |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * tb_find_xpm[] = { | |
3 /* width height ncolors cpp [x_hot y_hot] */ | |
4 "18 18 5 1 0 0", | |
5 /* colors */ | |
6 " s none m none c none", | |
7 ". s iconColor1 m black c #000000", | |
8 "X s iconColor2 m none c #FFFFFF", | |
9 "O s iconGray2 m none c #bdbdbd", | |
10 "+ s bottomShadowColor m black c #5D6069", | |
11 /* pixels */ | |
12 " ", | |
13 " ......... ", | |
14 " .XXXXXXX.. ", | |
15 " .XXXXXXX.O. ", | |
16 " .XXXXXXX.... ", | |
17 " .XXXXXXXXXX. ", | |
18 " .XXXXXXX.... ", | |
19 " .XXXXXX.OOOO. ", | |
20 " .XXXXX.OXXOOO. ", | |
21 " .XXXXX.OXOOOO. ", | |
22 " .XXXXX.OOOOOO. ", | |
23 " .XXXXX.OOOXOO. ", | |
24 " .XXXXXX.OOOO.+ ", | |
25 " .XXXXXXX....+.. ", | |
26 " .XXXXXXXXXX.+... ", | |
27 " ............+ .. ", | |
28 " ++++++++++ ", | |
29 " "}; |