1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 22:20:06 +08:00

Hide listchars when open guide windows

This commit is contained in:
Shidong Wang 2019-03-05 08:05:54 +08:00
parent ca5465ab6e
commit c13d665853

View File

@ -535,6 +535,7 @@ function! s:winopen() abort " {{{
setlocal nobuflisted buftype=nofile bufhidden=unload noswapfile
setlocal nocursorline nocursorcolumn colorcolumn=
setlocal winfixwidth winfixheight
setlocal listchars=
call s:updateStatusline()
call s:toggle_hide_cursor()
endfunction " }}}