diff options
author | Christian Brabandt <cb@256bit.org> | 2022-05-06 12:21:04 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-05-06 12:21:04 +0100 |
commit | e7d6dbc5721342e3d6b04cf285e4510b5569e707 (patch) | |
tree | 4cb238d111079f6caefb9f15a7612ea3d556aedd /runtime | |
parent | 509142ab7a9db32114b6d0949722b9133c9c22f2 (diff) | |
download | vim-git-e7d6dbc5721342e3d6b04cf285e4510b5569e707.tar.gz |
patch 8.2.4882: cannot make 'breakindent' use a specific columnv8.2.4882
Problem: Cannot make 'breakindent' use a specific column.
Solution: Add the "column" entry in 'breakindentopt'. (Christian Brabandt,
closes #10362, closes #10325)
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 cd048456d..689c9a28c 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1392,14 +1392,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") |