summaryrefslogtreecommitdiffstats
path: root/runtime/doc/indent.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-02-22 15:24:03 +0100
committerBram Moolenaar <Bram@vim.org>2019-02-22 15:24:03 +0100
commitf6b401090e816b4216f783a9b85d21d9ad134ff8 (patch)
treeb7831ffc83dee622fd5a800f7b5c90b3666379c3 /runtime/doc/indent.txt
parent55d3bdbbe2bfc7a78b4aa17763788dbddf87cab0 (diff)
Update runtime files
Diffstat (limited to 'runtime/doc/indent.txt')
-rw-r--r--runtime/doc/indent.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/indent.txt b/runtime/doc/indent.txt
index 57b1be1fc3..76431089eb 100644
--- a/runtime/doc/indent.txt
+++ b/runtime/doc/indent.txt
@@ -1,4 +1,4 @@
-*indent.txt* For Vim version 8.1. Last change: 2019 Jan 31
+*indent.txt* For Vim version 8.1. Last change: 2019 Feb 21
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -948,6 +948,11 @@ 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
+If looking back for unclosed parenthesis is still too slow, especially during
+a copy-paste operation, or if you don't need indenting inside multi-line
+parentheses, you can completely disable this feature: >
+ let g:pyindent_disable_parentheses_indenting = 1
+
R *ft-r-indent*