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.
我正在使用 netrw 读取 Vim 中的目录列表,我想在我的 netrw 选项卡中显示行号(这样我可以使用 :24 更快地浏览目录列表)。我在 vimrc 中使用“设置编号”来在编辑文件时启用行号,但这不会在 netrw 中显示行号。
在 netrw 中,如果我输入命令 ":set number",行号会显示,但一旦我更改目录,行号就会消失。
是否有我可以放入 .vimrc 的配置选项,使行号显示在 netrw 窗口中?
从autoload/netrw.vim运行时:
autoload/netrw.vim
call s:NetrwInit("g:netrw_bufsettings" , "noma nomod nonu nobl nowrap ro")
s:NetrwInit仅当未定义变量时才覆盖该变量。
s:NetrwInit
因此放入let g:netrw_bufsettings = 'noma nomod nu nobl nowrap ro'你的vimrc应该没问题。
let g:netrw_bufsettings = 'noma nomod nu nobl nowrap ro'
vimrc