From f1fbea9aefbe805b96665b691b9d4e873566797e Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Mon, 23 Nov 2015 10:52:26 -0500 Subject: [PATCH] Inserting a abbreviation expand keystroke. Abbreviations don't expand on space with this plugin on, since it remaps space. Let's just add the zero-width keystroke for abbreviation expansion before we do our crazy space work :) --- plugin/AutoClose.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/AutoClose.vim b/plugin/AutoClose.vim index d91ba8b..6e9766d 100644 --- a/plugin/AutoClose.vim +++ b/plugin/AutoClose.vim @@ -454,7 +454,7 @@ function! s:CreateExtraMaps() inoremap =Backspace() inoremap =Delete() if b:AutoCloseExpandSpace - inoremap =Space() + inoremap =Space() endif if len(b:AutoCloseExpandEnterOn) > 0 inoremap =Enter()