aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/options.txt
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-09-07 18:50:52 +0800
committerGitHub <noreply@github.com>2024-09-07 10:50:52 +0000
commit3d1110674ec330138ad6675f828673ca32575d4b (patch)
treecf003fb672fd2eab03f62cfe7655af2337ac2d2d /runtime/doc/options.txt
parent738a84de09a053a01e9fc167722aed36cc782a1f (diff)
downloadrneovim-3d1110674ec330138ad6675f828673ca32575d4b.tar.gz
rneovim-3d1110674ec330138ad6675f828673ca32575d4b.tar.bz2
rneovim-3d1110674ec330138ad6675f828673ca32575d4b.zip
vim-patch:9.1.0720: Wrong breakindentopt=list:-1 with multibyte or TABs (#30293)
Problem: Wrong breakindentopt=list:-1 with multibyte chars or TABs in text matched by 'formatlistpat' (John M Devin) Solution: Use the width of the match text (zeertzjq) fixes: vim/vim#15634 closes: vim/vim#15635 https://github.com/vim/vim/commit/61a6ac4d0066317131528f1b3ecc3b3a2599a75c
Diffstat (limited to 'runtime/doc/options.txt')
-rw-r--r--runtime/doc/options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 4945a1b46d..3693f46790 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1129,9 +1129,9 @@ A jump table for the options with a short description can be found at |Q_op|.
list:{n} Adds an additional indent for lines that match a
numbered or bulleted list (using the
'formatlistpat' setting).
- list:-1 Uses the length of a match with 'formatlistpat'
- for indentation.
(default: 0)
+ list:-1 Uses the width of a match with 'formatlistpat' for
+ indentation.
column:{n} Indent at column {n}. Will overrule the other
sub-options. Note: an additional indent may be
added for the 'showbreak' setting.