diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-11-05 19:19:55 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-11-05 19:35:56 +0800 |
commit | e0ec83a9701ffd9b30a41763ad2e2326d85d8480 (patch) | |
tree | ab9303393cb6190fb82e93893620e8ed56bed052 /runtime | |
parent | 6374120558476b9ab0ec4dc1df0523c73756e4ae (diff) | |
download | rneovim-e0ec83a9701ffd9b30a41763ad2e2326d85d8480.tar.gz rneovim-e0ec83a9701ffd9b30a41763ad2e2326d85d8480.tar.bz2 rneovim-e0ec83a9701ffd9b30a41763ad2e2326d85d8480.zip |
vim-patch:8.2.4882: cannot make 'breakindent' use a specific column
Problem: Cannot make 'breakindent' use a specific column.
Solution: Add the "column" entry in 'breakindentopt'. (Christian Brabandt,
closes vim/vim#10362, closes vim/vim#10325)
https://github.com/vim/vim/commit/e7d6dbc5721342e3d6b04cf285e4510b5569e707
Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index d14bb275d2..818c6d0115 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1059,14 +1059,20 @@ A jump table for the options with a short description can be found at |Q_op|. characters. It permits dynamic French paragraph indentation (negative) or emphasizing the line continuation (positive). + (default: 0) sbr Display the 'showbreak' value before applying the additional indent. + (default: off) 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. - The default value for min is 20, shift and list is 0. + (default: 0) + column:{n} Indent at column {n}. Will overrule the other + sub-options. Note: an additional indent may be + added for the 'showbreak' setting. + (default: off) *'browsedir'* *'bsdir'* 'browsedir' 'bsdir' string (default: "last") |