diff options
Diffstat (limited to 'src/nvim/normal.c')
| -rw-r--r-- | src/nvim/normal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index ad811a101a..5217db5b42 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -6528,6 +6528,8 @@ static void nv_window(cmdarg_T *cap) { if (cap->nchar == ':') { // "CTRL-W :" is the same as typing ":"; useful in a terminal window + cap->cmdchar = ':'; + cap->nchar = NUL; nv_colon(cap); } else if (!checkclearop(cap->oap)) { do_window(cap->nchar, cap->count0, NUL); // everything is in window.c |
