diff options
author | Christian Brabandt <cb@256bit.org> | 2021-07-14 20:00:27 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-07-14 20:00:27 +0200 |
commit | 4a0b85ad0193ac162e2d8458e4b1c5ad2e2b0193 (patch) | |
tree | 8544c63fd11c6e52fc46369173da3ea2ad41f6bf /src/structs.h | |
parent | 5bea41dea34bcc73c4efb1b554ad0a2018966ecc (diff) | |
download | vim-git-4a0b85ad0193ac162e2d8458e4b1c5ad2e2b0193.tar.gz |
patch 8.2.3160: 'breakindent' does not work well for bulleted listsv8.2.3160
Problem: 'breakindent' does not work well for bulleted and numbered lists.
Solution: Add the "list" entry to 'breakindentopt'. (Christian Brabandt,
closes #8564, closes #1661)
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index f1f8f3258..5331183e1 100644 --- a/src/structs.h +++ b/src/structs.h @@ -3671,6 +3671,7 @@ struct window_S int w_briopt_min; // minimum width for breakindent int w_briopt_shift; // additional shift for breakindent int w_briopt_sbr; // sbr in 'briopt' + int w_briopt_list; // additional indent for lists #endif // transform a pointer to a "onebuf" option into a "allbuf" option |