mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 9.0.0067: cannot show virtual text
Problem: Cannot show virtual text. Solution: Initial changes for virtual text support, using text properties.
This commit is contained in:
@@ -6775,7 +6775,9 @@ nfa_regmatch(
|
||||
}
|
||||
if (!result)
|
||||
result = nfa_re_num_cmp(t->state->val, op,
|
||||
(long_u)win_linetabsize(wp, rex.line, col) + 1);
|
||||
(long_u)win_linetabsize(wp,
|
||||
rex.reg_firstlnum + rex.lnum,
|
||||
rex.line, col) + 1);
|
||||
if (result)
|
||||
{
|
||||
add_here = TRUE;
|
||||
|
Reference in New Issue
Block a user