Mercurial > vim
annotate pixmaps/tb_new.xpm @ 34571:fdd232ab72ea v9.1.0184
patch 9.1.0184: Cursor pos wrong when clicking with conceal and wrap
Commit: https://github.com/vim/vim/commit/d0c1b7723f7e73763597af2f97a53d94ab7ed020
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sat Mar 16 15:03:33 2024 +0100
patch 9.1.0184: Cursor pos wrong when clicking with conceal and wrap
Problem: Cursor position wrong when clicking with conceal and wrap.
Solution: Use the virtual column of the last char for ScreenCols[] in
boguscols. Remove use of MAXCOL in ScreenCols[]. Rename
third argument of wlv_screen_line() to "clear_end" as that's
clearer what it does (zeertzjq).
related: 14192
closes: #14200
Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 16 Mar 2024 15:15:04 +0100 |
parents | 3fc0f57ecb91 |
children |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * tb_new_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 bottomShadowColor m black c #5D6069", | |
8 "X s iconColor2 m none c #FFFFFF", | |
9 "o s iconColor1 m black c #000000", | |
10 "O s topShadowColor m none c #DCDEE5", | |
11 /* pixels */ | |
12 " . .X. ", | |
13 " X. .X. X.", | |
14 " ooooooo.X.oXoX.X", | |
15 " oOOOOOOOoXXXXo..", | |
16 " oOOOOOOOXXXXXXXX", | |
17 " oOOXOOOOoXoXXo..", | |
18 " oOXXOOO.OXoXoX ", | |
19 " oOOOOO.OOXoX..X ", | |
20 " oOOOOOOOOXoX. .X", | |
21 " oOOOOOOOOXo. .", | |
22 " oOOOOOOOOXo. ", | |
23 " oOOOOOOOOXo. ", | |
24 " oOOOOOOOOXo. ", | |
25 " oOOOOOOOOXo. ", | |
26 " oOOOOOOOOXo. ", | |
27 " oXXXXXXXXXo. ", | |
28 " ooooooooooo. ", | |
29 " .......... "}; |