diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-06-10 15:53:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-10 15:53:42 +0200 |
commit | 04e2ba85b1135a669f626ed59ceb2f797bc40997 (patch) | |
tree | 3b54655781098eccaba1a7089777246e92c5f290 /src/nvim/normal.c | |
parent | c83926cd0aa5720e88e84fa3fae3c0e689cca3ef (diff) | |
download | rneovim-04e2ba85b1135a669f626ed59ceb2f797bc40997.tar.gz rneovim-04e2ba85b1135a669f626ed59ceb2f797bc40997.tar.bz2 rneovim-04e2ba85b1135a669f626ed59ceb2f797bc40997.zip |
doc [ci skip] #10129
- document lua vim.loop #10123
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index af2d24e9db..0a4d32d438 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -7987,8 +7987,8 @@ static void nv_event(cmdarg_T *cap) multiqueue_process_events(main_loop.events); finish_op = false; if (may_restart) { - // Tricky: if restart_edit was set before the handler we are in ctrl-o mode - // but if not, the event should be allow to trigger :startinsert + // Tricky: if restart_edit was set before the handler we are in ctrl-o mode, + // but if not, the event should be allowed to trigger :startinsert. cap->retval |= CA_COMMAND_BUSY; // don't call edit() now } } |