Update runtime files

This commit is contained in:
Bram Moolenaar
2018-10-19 16:22:31 +02:00
parent 04c86d27fe
commit 2c64ca1802
16 changed files with 198 additions and 96 deletions

View File

@ -941,6 +941,11 @@ Indent after a nested paren: >
Indent for a continuation line: >
let g:pyindent_continue = '&sw * 2'
The method uses searchpair() to look back for unclosed parenthesis. This can
sometimes be slow, thus it timeouts after 150 msec. If you notice the
indenting isn't correct, you can set a larger timeout in msec: >
let g:pyindent_searchpair_timeout = 500
R *ft-r-indent*