mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
patch 8.2.1898: command modifier parsing always uses global cmdmod
Problem: Command modifier parsing always uses global cmdmod. Solution: Pass in cmdmod_T to use. Rename struct fields consistently.
This commit is contained in:
@@ -3616,7 +3616,7 @@ ins_esc(
|
||||
curwin->w_set_curswant = TRUE;
|
||||
|
||||
// Remember the last Insert position in the '^ mark.
|
||||
if (!cmdmod.keepjumps)
|
||||
if ((cmdmod.cmod_flags & CMOD_KEEPJUMPS) == 0)
|
||||
curbuf->b_last_insert = curwin->w_cursor;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user