diff --git a/autoload/delimitMate.vim b/autoload/delimitMate.vim index 1d1cff7..6548a9f 100644 --- a/autoload/delimitMate.vim +++ b/autoload/delimitMate.vim @@ -413,7 +413,10 @@ function! delimitMate#JumpOut(char) "{{{ endif let jump = delimitMate#ShouldJump(a:char) if jump == 1 - return "\" + " HACK: Instead of , we remove the char to be jumped over and + " insert it again. This will trigger re-indenting via 'indentkeys'. + " Ref: https://github.com/Raimondi/delimitMate/issues/168 + return "\".a:char elseif jump == 3 return "\\" elseif jump == 5