mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.2324: not easy to get mark en cursor posotion by character count
Problem: Not easy to get mark en cursor posotion by character count. Solution: Add functions that use character index. (Yegappan Lakshmanan, closes #7648)
This commit is contained in:
@@ -4201,7 +4201,7 @@ tagstack_push_items(win_T *wp, list_T *l)
|
||||
// parse 'from' for the cursor position before the tag jump
|
||||
if ((di = dict_find(itemdict, (char_u *)"from", -1)) == NULL)
|
||||
continue;
|
||||
if (list2fpos(&di->di_tv, &mark, &fnum, NULL) != OK)
|
||||
if (list2fpos(&di->di_tv, &mark, &fnum, NULL, FALSE) != OK)
|
||||
continue;
|
||||
if ((tagname =
|
||||
dict_get_string(itemdict, (char_u *)"tagname", TRUE)) == NULL)
|
||||
|
Reference in New Issue
Block a user