Mercurial > vim
annotate pixmaps/tb_find.xpm @ 19465:07627d1b4d8c v8.2.0290
patch 8.2.0290: running individual test differs from all tests
Commit: https://github.com/vim/vim/commit/85683ec620be199d63af3b0542a03eeb72b08fb6
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 20 22:35:02 2020 +0100
patch 8.2.0290: running individual test differs from all tests
Problem: Running individual test differs from all tests.
Solution: Pass on environment variables. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/5672)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 20 Feb 2020 22:45:03 +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 " "}; |