diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-10-24 20:49:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-10-24 20:49:43 +0200 |
commit | e10044015841711b989f9a898d427bcc1fdb4c32 (patch) | |
tree | 256dbf4f826bbc408bb1eca2b381c4dc4f953eb6 /src/mark.c | |
parent | 5661ed6c833e05467cab33cb9b1c535e7e5cc570 (diff) | |
download | vim-git-e10044015841711b989f9a898d427bcc1fdb4c32.tar.gz |
patch 8.2.1898: command modifier parsing always uses global cmdmodv8.2.1898
Problem: Command modifier parsing always uses global cmdmod.
Solution: Pass in cmdmod_T to use. Rename struct fields consistently.
Diffstat (limited to 'src/mark.c')
-rw-r--r-- | src/mark.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mark.c b/src/mark.c index aa9445ed0..5efda8e0e 100644 --- a/src/mark.c +++ b/src/mark.c @@ -145,7 +145,7 @@ setpcmark(void) #endif // for :global the mark is set only once - if (global_busy || listcmd_busy || cmdmod.keepjumps) + if (global_busy || listcmd_busy || (cmdmod.cmod_flags & CMOD_KEEPJUMPS)) return; curwin->w_prev_pcmark = curwin->w_pcmark; @@ -1068,7 +1068,7 @@ mark_adjust_internal( if (line2 < line1 && amount_after == 0L) // nothing to do return; - if (!cmdmod.lockmarks) + if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0) { // named marks, lower case and upper case for (i = 0; i < NMARKS; i++) @@ -1133,7 +1133,7 @@ mark_adjust_internal( FOR_ALL_TAB_WINDOWS(tab, win) { #ifdef FEAT_JUMPLIST - if (!cmdmod.lockmarks) + if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0) // Marks in the jumplist. When deleting lines, this may create // duplicate marks in the jumplist, they will be removed later. for (i = 0; i < win->w_jumplistlen; ++i) @@ -1143,7 +1143,7 @@ mark_adjust_internal( if (win->w_buffer == curbuf) { - if (!cmdmod.lockmarks) + if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0) // marks in the tag stack for (i = 0; i < win->w_tagstacklen; i++) if (win->w_tagstack[i].fmark.fnum == fnum) @@ -1249,7 +1249,8 @@ mark_col_adjust( win_T *win; pos_T *posp; - if ((col_amount == 0L && lnum_amount == 0L) || cmdmod.lockmarks) + if ((col_amount == 0L && lnum_amount == 0L) + || (cmdmod.cmod_flags & CMOD_LOCKMARKS)) return; // nothing to do // named marks, lower case and upper case |