From be29de1fa2b2dde54f4e43bc12d8bb7a46845308 Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Sat, 20 Jun 2015 17:16:10 -0300 Subject: defaults: set 'listchars' to "tab:> ,trail:-,nbsp:+". #2872 Re: https://github.com/neovim/neovim/issues/2676 --- src/nvim/option.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/nvim/option.c') 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) { -- cgit