diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-06-20 17:16:10 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-08-22 13:48:48 -0400 |
commit | be29de1fa2b2dde54f4e43bc12d8bb7a46845308 (patch) | |
tree | b88e02308a4dbcc9fbef948935a33473da010fcc /src/nvim/option.c | |
parent | 105a72eabc6f74195b6319471344148726683b9d (diff) | |
download | rneovim-be29de1fa2b2dde54f4e43bc12d8bb7a46845308.tar.gz rneovim-be29de1fa2b2dde54f4e43bc12d8bb7a46845308.tar.bz2 rneovim-be29de1fa2b2dde54f4e43bc12d8bb7a46845308.zip |
defaults: set 'listchars' to "tab:> ,trail:-,nbsp:+". #2872
Re: https://github.com/neovim/neovim/issues/2676
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 9a375c0675..2d6e2af89e 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -515,6 +515,9 @@ void set_init_1(void) /* Parse default for 'fillchars'. */ (void)set_chars_option(&p_fcs); + /* Parse default for 'listchars'. */ + (void)set_chars_option(&p_lcs); + /* enc_locale() will try to find the encoding of the current locale. */ p = enc_locale(); if (p != NULL) { |