mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.0197
This commit is contained in:
13
src/normal.c
13
src/normal.c
@@ -1935,7 +1935,12 @@ do_pending_operator(cap, old_col, gui_yank)
|
||||
break;
|
||||
|
||||
case OP_FORMAT:
|
||||
if (*p_fp != NUL)
|
||||
#if defined(FEAT_EVAL)
|
||||
if (*curbuf->b_p_fex != NUL)
|
||||
op_formatexpr(oap); /* use expression */
|
||||
else
|
||||
#endif
|
||||
if (*p_fp != NUL)
|
||||
op_colon(oap); /* use external command */
|
||||
else
|
||||
op_format(oap, FALSE); /* use internal function */
|
||||
@@ -7832,6 +7837,12 @@ nv_g_cmd(cap)
|
||||
break;
|
||||
#endif
|
||||
|
||||
#ifdef FEAT_WINDOWS
|
||||
case 't':
|
||||
goto_tabpage((int)cap->count0);
|
||||
break;
|
||||
#endif
|
||||
|
||||
default:
|
||||
clearopbeep(oap);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user