Hi Charles,
Please see this screen shot:
https://f.cloud.github.com/assets/840186/1640836/7e0ee8d2-5843-11e3-8a6a-97477ed4e0bc.png
File sizes and some part of timestamps are wrongly highlighted with the
directory color when setting `:let g:netrw_liststyle=1` on Windows.
(Also you will see some garbage characters '<81><92>\' on top of each
filename as already reported by mattn.)
Attached patch fixes this problem. (Patch for v150k)
Regards,
Ken Takata
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.
--- syntax/netrw.vim.org 2013-12-06 11:39:36.094727800 +0900
+++ syntax/netrw.vim 2013-12-06 13:02:19.411527200 +0900
@@ -19,7 +19,7 @@
syn match netrwPlain "\(\S\+ \)*\S\+" contains=@NoSpell
syn match netrwSpecial "\%(\S\+ \)*\S\+[*|=]\ze\%(\s\{2,}\|$\)" contains=netrwClassify,@NoSpell
syn match netrwDir "\.\{1,2}/" contains=netrwClassify,@NoSpell
-syn match netrwDir "\%(\S\+ \)*\S\+/" contains=netrwClassify,@NoSpell
+syn match netrwDir "\%(\S\+ \)*\S\+/\ze\%(\s\{2,}\|$\)" contains=netrwClassify,@NoSpell
syn match netrwSizeDate "\<\d\+\s\d\{1,2}/\d\{1,2}/\d\{4}\s" skipwhite contains=netrwDateSep,@NoSpell nextgroup=netrwTime
syn match netrwSymLink "\%(\S\+ \)*\S\+@\ze\%(\s\{2,}\|$\)" contains=netrwClassify,@NoSpell
syn match netrwExe "\%(\S\+ \)*\S*[^~]\*\ze\%(\s\{2,}\|$\)" contains=netrwClassify,@NoSpell