diff options
author | James McCoy <jamessan@jamessan.com> | 2017-02-06 18:40:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-06 18:40:05 -0500 |
commit | 7c0d091404a40c321bb0ad720b6af4791128843c (patch) | |
tree | a1aa1cb148449a52daba056e5ae9d761a25ddb6b /src/nvim/edit.c | |
parent | 24ade150f9ae0cd2ce137b02530549c66a06b873 (diff) | |
parent | 86242841e3c0f7bc87e1dbf9e44e2d1334d672b8 (diff) | |
download | rneovim-7c0d091404a40c321bb0ad720b6af4791128843c.tar.gz rneovim-7c0d091404a40c321bb0ad720b6af4791128843c.tar.bz2 rneovim-7c0d091404a40c321bb0ad720b6af4791128843c.zip |
Merge pull request #6063 from jamessan/vim-8.0.0208
vim-patch:8.0.0208
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index 95c33916f1..53540d21d4 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -800,7 +800,7 @@ static int insert_handle_key(InsertState *s) if (!p_im) { goto normalchar; // insert CTRL-Z as normal char } - stuffReadbuff((char_u *)":st\r"); + do_cmdline_cmd("stop"); s->c = Ctrl_O; // FALLTHROUGH |