aboutsummaryrefslogtreecommitdiff
path: root/plugin/insert_cancel.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-28 22:57:24 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-28 22:57:24 +1200
commit607c2638b0fa94e8bd4a5db5e7757a060d7db093 (patch)
treebf159c18c082432c644e2ec79d16dbf48ea87fcd /plugin/insert_cancel.vim
parentMerge branch 'release/v5.0.0' (diff)
parentBump VERSION (diff)
downloadvim-insert-cancel-607c2638b0fa94e8bd4a5db5e7757a060d7db093.tar.gz
vim-insert-cancel-607c2638b0fa94e8bd4a5db5e7757a060d7db093.zip
Merge branch 'release/v6.0.0'v6.0.0
* release/v6.0.0: Changed my mind again; do fire InsertLeave
Diffstat (limited to 'plugin/insert_cancel.vim')
-rw-r--r--plugin/insert_cancel.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/insert_cancel.vim b/plugin/insert_cancel.vim
index f0d8443..540031b 100644
--- a/plugin/insert_cancel.vim
+++ b/plugin/insert_cancel.vim
@@ -1,7 +1,7 @@
"
" insert_cancel.vim: Insert mode mapping to cancel the current insert
" operation by undoing the last change upon insert exit, if we made a change,
-" without firing InsertLeave. This is intended for remapping Ctrl-C in insert
+" while firing InsertLeave. This is intended for remapping Ctrl-C in insert
" mode to do something more useful.
"
" Author: Tom Ryder <tom@sanctum.geek.nz>
@@ -21,4 +21,4 @@ augroup END
" Undo any changes if they exceed the cached number on insert map key press
inoremap <expr> <Plug>(InsertCancel)
- \ changenr() > b:insert_cancel_changenr ? "\<C-C>u" : "\<C-C>"
+ \ changenr() > b:insert_cancel_changenr ? "\<Esc>u" : "\<Esc>"