diff --git a/autoload/delimitMate.vim b/autoload/delimitMate.vim index ea55ee3..035e558 100644 --- a/autoload/delimitMate.vim +++ b/autoload/delimitMate.vim @@ -414,7 +414,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