mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 10:26:31 +00:00
vim-patch:9.1.1819: Cannot configure the inner foldlevel indicator (#36010)
Problem: Cannot configure the inner foldlevel indicator for the
foldcolumn
Solution: Add "foldinner" suboption value to the 'fillchar' option
(Maria José Solano).
closes: vim/vim#18365
1a691afd27
Co-authored-by: Maria José Solano <majosolano99@gmail.com>
This commit is contained in:
@@ -2246,26 +2246,27 @@ struct chars_tab {
|
||||
|
||||
static fcs_chars_T fcs_chars;
|
||||
static const struct chars_tab fcs_tab[] = {
|
||||
CHARSTAB_ENTRY(&fcs_chars.stl, "stl", " ", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.stlnc, "stlnc", " ", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.wbr, "wbr", " ", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.horiz, "horiz", "─", "-"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.horizup, "horizup", "┴", "-"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.horizdown, "horizdown", "┬", "-"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.vert, "vert", "│", "|"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.vertleft, "vertleft", "┤", "|"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.vertright, "vertright", "├", "|"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.verthoriz, "verthoriz", "┼", "+"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.fold, "fold", "·", "-"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.foldopen, "foldopen", "-", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.foldclosed, "foldclose", "+", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.foldsep, "foldsep", "│", "|"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.diff, "diff", "-", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.msgsep, "msgsep", " ", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.eob, "eob", "~", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.lastline, "lastline", "@", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.trunc, "trunc", ">", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.truncrl, "truncrl", "<", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.stl, "stl", " ", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.stlnc, "stlnc", " ", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.wbr, "wbr", " ", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.horiz, "horiz", "─", "-"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.horizup, "horizup", "┴", "-"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.horizdown, "horizdown", "┬", "-"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.vert, "vert", "│", "|"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.vertleft, "vertleft", "┤", "|"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.vertright, "vertright", "├", "|"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.verthoriz, "verthoriz", "┼", "+"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.fold, "fold", "·", "-"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.foldopen, "foldopen", "-", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.foldclosed, "foldclose", "+", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.foldsep, "foldsep", "│", "|"),
|
||||
CHARSTAB_ENTRY(&fcs_chars.foldinner, "foldinner", NULL, NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.diff, "diff", "-", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.msgsep, "msgsep", " ", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.eob, "eob", "~", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.lastline, "lastline", "@", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.trunc, "trunc", ">", NULL),
|
||||
CHARSTAB_ENTRY(&fcs_chars.truncrl, "truncrl", "<", NULL),
|
||||
};
|
||||
|
||||
static lcs_chars_T lcs_chars;
|
||||
|
Reference in New Issue
Block a user