diff src/globals.h @ 23964:17697c4e5d48 v8.2.2524

patch 8.2.2524: cannot change the characters displayed in the foldcolumn Commit: https://github.com/vim/vim/commit/3aca5a6fbcfbf5f4492b9ea0c4308ac524d33606 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 17 13:14:07 2021 +0100 patch 8.2.2524: cannot change the characters displayed in the foldcolumn Problem: Cannot change the characters displayed in the foldcolumn. Solution: Add fields to 'fillchars'. (Yegappan Lakshmanan, Matthieu Coudron, closes #7860)
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Feb 2021 13:15:03 +0100
parents 44be09b25619
children cdeec1389c8c
line wrap: on
line diff
--- a/src/globals.h
+++ b/src/globals.h
@@ -1347,6 +1347,9 @@ EXTERN int	fill_stl INIT(= ' ');
 EXTERN int	fill_stlnc INIT(= ' ');
 EXTERN int	fill_vert INIT(= ' ');
 EXTERN int	fill_fold INIT(= '-');
+EXTERN int	fill_foldopen INIT(= '-');
+EXTERN int	fill_foldclosed INIT(= '+');
+EXTERN int	fill_foldsep INIT(= '|');
 EXTERN int	fill_diff INIT(= '-');
 EXTERN int	fill_eob INIT(= '~');