diff options
| author | Bram Moolenaar <Bram@vim.org> | 2017-02-01 15:03:30 +0100 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2017-02-01 15:03:30 +0100 |
| commit | 0b5c93a7f266cd8c90ea27bdaf9f7214a95d64d7 (patch) | |
| tree | 19be83989f8bf599da23e28d04364bcbea22c1ee /src/normal.c | |
| parent | 1266d678bf2ed5072cca9381409536406f8d7b32 (diff) | |
| download | vim-git-0b5c93a7f266cd8c90ea27bdaf9f7214a95d64d7.tar.gz | |
patch 8.0.0282: need to use CTRL-O twice when in Visual-Insert modev8.0.0282
Problem: When doing a Visual selection and using "I" to go to insert mode,
CTRL-O needs to be used twice to go to Normal mode. (Coacher)
Solution: Check for the return value of edit(). (Christian Brabandt,
closes #1290)
Diffstat (limited to 'src/normal.c')
| -rw-r--r-- | src/normal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/normal.c b/src/normal.c index 2b867bb19..7bae34ed2 100644 --- a/src/normal.c +++ b/src/normal.c @@ -2041,6 +2041,8 @@ do_pending_operator(cmdarg_T *cap, int old_col, int gui_yank) if (restart_edit == 0) restart_edit = restart_edit_save; + else + cap->retval |= CA_COMMAND_BUSY; } #else vim_beep(BO_OPER); |
