Mercurial > vim
annotate pixmaps/tb_split.xpm @ 30763:8ea77a6ceff0 v9.0.0716
patch 9.0.0716: with 'nowrap' virtual text "after" does not scroll left
Commit: https://github.com/vim/vim/commit/cd105417a53fcf97c0935f3468201ef11516c9f1
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Oct 10 19:50:42 2022 +0100
patch 9.0.0716: with 'nowrap' virtual text "after" does not scroll left
Problem: With 'nowrap' virtual text "after" does not scroll left.
Solution: Skip part of the virtual text that is left of the window.
(closes #11320) Fix going beyond the last column of the window.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 10 Oct 2022 21:00:05 +0200 |
parents | 3fc0f57ecb91 |
children |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * tb_split_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 topShadowColor m none c #DCDEE5", | |
8 "X s iconColor1 m black c #000000", | |
9 "o s iconColor2 m none c #FFFFFF", | |
10 "O s bottomShadowColor m black c #5D6069", | |
11 /* pixels */ | |
12 " ", | |
13 " .XXXXXXXXXXX ", | |
14 " .X........oX ", | |
15 " .X..o.....oXO ", | |
16 " .X.oo.....oXO ", | |
17 " .X........oXO ", | |
18 " .X........oXO ", | |
19 " .XoooooooooXO ", | |
20 " .XXXXXXXXXXXO ", | |
21 " .XOOOOOOOOoXO ", | |
22 " .X..o.....oXO ", | |
23 " .X.oo.....oXO ", | |
24 " .X........oXO ", | |
25 " .X........oXO ", | |
26 " .XoooooooooXO ", | |
27 " .XXXXXXXXXXXO ", | |
28 " OOOOOOOOOO ", | |
29 " "}; |