jtp*_*yda 6

在 vim 中,运行:

let g:netrw_browsex_viewer="cmd.exe /C start" 
Run Code Online (Sandbox Code Playgroud)

基于这个答案这个答案这个问题

您也可以将其放入 .vimrc 文件中。由于我在计算机之间共享 vimrc 文件,因此我使用以下命令为此特定于操作系统的设置制作 .vimrc_local 文件:

" From: https://devel.tech/snippets/n/vIIMz8vZ/load-vim-source-files-only-if-they-exist/
function! SourceIfExists(file)
  if filereadable(expand(a:file))
    exe 'source' a:file
  endif
endfunction

call SourceIfExists("~/.vimrc_local")
Run Code Online (Sandbox Code Playgroud)


归档时间:

查看次数:

1528 次

最近记录:

7 年,9 月 前