Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Vim 中默认的文件浏览器是 NetRW。它可以被调用,例如,使用:e .. 在其树视图中,它在目录名称前加上竖线字符 ( |)。
:e .
|
例如:
joe/ | Desktop/ | Documents/ | Downloads/
如何在 NetRW 的树形显示中将管道字符替换为其他字符?
我查看了怪物netrw.vim文件,似乎在其中找不到这个管道字符。
netrw.vim
你看起来不够努力:
if has("gui_running") && (&enc == 'utf-8' || &enc == 'utf-16' || &enc == 'ucs-4') let s:treedepthstring= "│ " else let s:treedepthstring= "| " endif
第 439 行$VIMRUNTIME/autoload/netrw.vim(至少在版本 151 中)。
$VIMRUNTIME/autoload/netrw.vim