diff options
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 78eebc520f..943dd7a2da 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -4531,10 +4531,10 @@ int do_addsub(int command, linenr_T Prenum1, bool g_cmd) // reset subtract = false; negative = false; - if (visual && VIsual_mode != Ctrl_V) { - col = 0; - } else { + if (visual && VIsual_mode == Ctrl_V) { col = startcol; + } else { + col = 0; } Prenum1 += offset; curwin->w_set_curswant = true; |