# HG changeset patch # User Bram Moolenaar # Date 1366821285 -7200 # Node ID 6a8ffaf0585660badbb817f6a2f1cb583c9f1447 # Parent 48b618de0daa8f61ab54a34ec7a882436be494ca updated for version 7.3.918 Problem: Repeating an Ex command after using a Visual motion does not work. Solution: Check for an Ex command being used. (David B?rgin) diff --git a/src/normal.c b/src/normal.c --- a/src/normal.c +++ b/src/normal.c @@ -1504,11 +1504,14 @@ do_pending_operator(cap, old_col, gui_ya } #endif - /* only redo yank when 'y' flag is in 'cpoptions' */ - /* never redo "zf" (define fold) */ + /* Only redo yank when 'y' flag is in 'cpoptions'. */ + /* Never redo "zf" (define fold). */ if ((vim_strchr(p_cpo, CPO_YANK) != NULL || oap->op_type != OP_YANK) #ifdef FEAT_VISUAL - && (!VIsual_active || oap->motion_force) + && ((!VIsual_active || oap->motion_force) + /* Also redo Operator-pending Visual mode mappings */ + || (VIsual_active && cap->cmdchar == ':' + && oap->op_type != OP_COLON)) #endif && cap->cmdchar != 'D' #ifdef FEAT_FOLDING @@ -1797,7 +1800,7 @@ do_pending_operator(cap, old_col, gui_ya prep_redo(oap->regname, 0L, NUL, cap->cmdchar, cap->nchar, get_op_char(oap->op_type), get_extra_op_char(oap->op_type)); - else + else if (cap->cmdchar != ':') prep_redo(oap->regname, 0L, NUL, 'v', get_op_char(oap->op_type), get_extra_op_char(oap->op_type), diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 918, +/**/ 917, /**/ 916,