summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-02-14 22:29:30 +0000
committerBram Moolenaar <Bram@vim.org>2006-02-14 22:29:30 +0000
commit1d2ba7fa851f988ea9eab47b7662be243f85ddfa (patch)
tree5882ec62c5c5c6047021a94e74e4797139944a95 /src/normal.c
parentf52c725c4739f2d3368029d67218d6cae0d87995 (diff)
downloadvim-git-1d2ba7fa851f988ea9eab47b7662be243f85ddfa.tar.gz
updated for version 7.0197v7.0197
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c
index 09410f030..d4001b494 100644
--- a/src/normal.c
+++ b/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;