From 3ffe25ce1d78e884879cc8c26d5a7ea6a14f4d49 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Mon, 22 Apr 2013 23:15:38 -0400 Subject: [PATCH] Don't mess with netrw I've decided this is outside the scope of things sensible.vim should tweak. --- plugin/sensible.vim | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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