mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +00:00
vim-patch:7.4.212
Problem: Now that the +visual feature is always enabled the #ifdefs for it
are not useful.
Solution: Remove the checks for FEAT_VISUAL.
f7ff6e85e8
This commit is contained in:
@@ -6627,9 +6627,7 @@ void do_pending_operator(cmdarg_T *cap, int old_col, bool gui_yank)
|
||||
switch (oap->op_type) {
|
||||
case OP_LSHIFT:
|
||||
case OP_RSHIFT:
|
||||
op_shift(oap, true,
|
||||
oap->is_VIsual ? (int)cap->count1 :
|
||||
1);
|
||||
op_shift(oap, true, oap->is_VIsual ? (int)cap->count1 : 1);
|
||||
auto_format(false, true);
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user