updated action on triple quote to add second line

changed the action on triple quote to add a closing quote and
start editing on the newly opened line inside the quotes.  the
only way to jump beyond the quotes is to escape and scroll down.
this is because a <CR> should give a new line, not jump to closing
quotes.
This commit is contained in:
Walker Inman 2013-02-11 09:46:17 -05:00
parent dd1ea6b1f7
commit f11f3e5ee3

View File

@ -142,7 +142,7 @@ function! AutoPairsInsert(key)
let pprev_char = line[col('.')-3]
if pprev_char == open && prev_char == open
" Double pair found
return a:key
return a:key."\<CR>".repeat(a:key,3)."\<Up>\<ESC>o"
end
end