diff options
author | Jack Bracewell <jbtwentythree@gmail.com> | 2017-03-24 16:36:46 +0000 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-06-13 17:54:16 +0200 |
commit | a7bb63c55dacfa822e1a24d041771d9e8d83a980 (patch) | |
tree | 78ab8f42c2470f7a810b9327e18596a9973f030a /src/nvim/option.c | |
parent | 463da8480685dbd53335b4e3f0a6d37cacbacac4 (diff) | |
download | rneovim-a7bb63c55dacfa822e1a24d041771d9e8d83a980.tar.gz rneovim-a7bb63c55dacfa822e1a24d041771d9e8d83a980.tar.bz2 rneovim-a7bb63c55dacfa822e1a24d041771d9e8d83a980.zip |
Add ‘eob’ option to fillchars
This option allows configuring what character is shown on the empty
lines at the end of a buffer, previously hardcoded to ‘~’
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index a7ee0ef28b..3c1a70e90d 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -3386,6 +3386,7 @@ static char_u *set_chars_option(char_u **varp) { &fill_fold, "fold" , 183 }, // · { &fill_diff, "diff" , '-' }, { &fill_msgsep, "msgsep", ' ' }, + { &fill_eob, "eob", '~' }, }; static struct charstab lcstab[] = { { &lcs_eol, "eol", NUL }, |