diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-06-27 05:18:54 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-06-27 05:18:54 +0200 |
commit | 730cde924cea50977bdbfa5b977180bfaa188a27 (patch) | |
tree | c0570ec54157923527d3da2d10c31782738d532d /src/normal.c | |
parent | a800b42975f7a62282cb90d8c61ef3cff2fe810a (diff) | |
download | vim-git-730cde924cea50977bdbfa5b977180bfaa188a27.tar.gz |
Added ":earlier 1f" and ":later 1f".
Diffstat (limited to 'src/normal.c')
-rw-r--r-- | src/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c index e161d455d..9ad32f7d8 100644 --- a/src/normal.c +++ b/src/normal.c @@ -8294,7 +8294,7 @@ nv_g_cmd(cap) case '-': /* "g+" and "g-": undo or redo along the timeline */ if (!checkclearopq(oap)) undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1, - FALSE, FALSE); + FALSE, FALSE, FALSE); break; default: |