summaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-01-14 20:11:38 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-14 20:11:38 +0000
commit0f112052acaeffd75b7eb001eeb8a246ad12a276 (patch)
treea17f77f9a69ce3771d2c7c2c9e61c7c48d4c5d78 /src/buffer.c
parent26ebf1f036517ebeacf571c333a83cca7e13bbe2 (diff)
patch 8.2.4091: virtcol is recomputed for statusline unnecessarilyv8.2.4091
Problem: Virtcol is recomputed for statusline unnecessarily. Solution: Just use "w_virtcol". (closes #9523)
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 3445b204f3..08db0fc28e 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -4610,15 +4610,7 @@ build_stl_str_hl(
case STL_VIRTCOL:
case STL_VIRTCOL_ALT:
- // In list mode virtcol needs to be recomputed
- virtcol = wp->w_virtcol;
- if (wp->w_p_list && wp->w_lcs_chars.tab1 == NUL)
- {
- wp->w_p_list = FALSE;
- getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL);
- wp->w_p_list = TRUE;
- }
- ++virtcol;
+ virtcol = wp->w_virtcol + 1;
// Don't display %V if it's the same as %c.
if (opt == STL_VIRTCOL_ALT
&& (virtcol == (colnr_T)(!(State & INSERT) && empty_line