diff --git a/plugin/sensible.vim b/plugin/sensible.vim index 8563edf..137b5c4 100644 --- a/plugin/sensible.vim +++ b/plugin/sensible.vim @@ -54,7 +54,7 @@ endif if &listchars ==# 'eol:$' set listchars=tab:>\ ,trail:-,extends:>,precedes:<,nbsp:+ - if &termencoding ==# 'utf-8' || &encoding ==# 'utf-8' + if !has('win32') && (&termencoding ==# 'utf-8' || &encoding ==# 'utf-8') let &listchars = "tab:\u21e5 ,trail:\u2423,extends:\u21c9,precedes:\u21c7,nbsp:\u00b7" endif endif @@ -93,10 +93,6 @@ if &t_Co == 8 && $TERM !~# '^linux' set t_Co=16 endif -if !exists('g:netrw_list_hide') - let g:netrw_list_hide = '\~$,^tags$,\(^\|\s\s\)\zs\.\S\+' -endif - " Load matchit.vim, but only if the user hasn't installed a newer version. if !exists('g:loaded_matchit') && findfile('plugin/matchit.vim', &rtp) ==# '' runtime! macros/matchit.vim