1

在 Windows Vista 上使用 gVim 7.3 通过 UNC 路径访问目录/文件时,我遇到了一些非常痛苦的延迟。

在打开新缓冲区时读取/写入文件很慢,以及目录/文件名的制表符完成。不过,我在使用写字板时没有注意到这种滞后。

我尝试过的事情:

  • Cream(显然他们对目录命名方案进行了修复)
  • 将网络驱动器映射到 z: 或其他
  • 各种设置
    • 设置 ffs=dos
    • 设置完成=.,w,b,u,t
    • 设置 noshellslash

我试过 cygwin,但同样明显的滞后也出现在那里。我已经关闭了所有交换/备份文件。非常感谢任何帮助......我已经倾倒了我的 vimrc 以供参考

if v:progname =~? "evim"
  finish
endif

set nocompatible

:runtime! ftplugin/man.vim

set backspace=indent,eol,start

colorscheme torte " murphy
syn on

set ffs=unix,dos

" portable friendly
set nobackup
set nowritebackup
set noswapfile
set viminfo=
" gui options (http://steveno.wordpress.com/2007/10/08/vim-for-windows/)
set guioptions-=T  " No toolbar
set gfn=Consolas:h9:cANSI

set history=50
set ruler
set showcmd
set incsearch
set number
set tabstop=4
set softtabstop=4
set shiftwidth=4
set wrap
set wildmode=longest,list,full  " Complete longest string, list alternatives
                                " then completed next full match, cycling back

function! ToggleHLSearch()
    if &hls
        set nohls
    else
        set hls
    endif
endfunction

function! InsertTabWrapper()
    let col = col('.') - 1
    if !col || getline('.')[col - 1] !~ '\k'
        return "\<tab>"
    else
        return "\<c-p>"
    endif
endfunction


inoremap <tab> <c-r>=InsertTabWrapper()<CR>
nmap <silent> <C-n> <Esc>:call ToggleHLSearch()<CR>
nmap ,s :source ~/.vimrc<Return>
" change current directory to that of open buffer
nmap ,c :cd %:p:h<Return>
nmap <c-h> <c-w>h<c-w><bar>
nmap <c-l> <c-w>l<c-w><bar>
map <C-J> <C-W>j<C-W>_
map <C-K> <C-W>k<C-W>_
map Q gq

" Commenting blocks of text
" ,<    <!-- --> html style comments
map ,< :s/^\(.*\)$/<!-- \1 -->/<CR><Esc>:nohlsearch<CR>
" ,/     // comments
map ,/ :s/^/\/\//<CR>
" ,#    # comments
map ,# :s/^/#/<CR>
" uncommenting all of the above
"map ,- :s/^\(\/\/|<!-- |#\)\(.*\)\(-->\)*/\1/<CR>

if &t_Co > 2 || has("gui_running")
  syntax on
  set hlsearch
endif

if has("autocmd")
    "&& !exists("autocommands_loaded")
  let autocommands_loaded = 1
  filetype plugin indent on
  augroup vimrcEx
  au!
  " Remove ALL autocommands for the current group.
  autocmd!
  autocmd FileType text setlocal textwidth=78
  autocmd BufReadPost *
    \ if line("'\"") > 0 && line("'\"") <= line("$") |
    \   exe "normal g`\"" |
    \ endif
  au BufRead *.html set filetype=html4
  augroup END

  " allow editing Word Docs sanely
  autocmd BufReadPre *.doc set ro
  autocmd BufReadPre *.doc set hlsearch!
  autocmd BufReadPost *.doc %!antiword "%"

  " uncomment the following to remember the view of the file edited between
  " sessions
  " au BufWinLeave * mkview
  " au BufWinEnter * silent loadview

  " run file with PHP CLI (CTRL-M)
  autocmd FileType php noremap <C-M> :w!<CR>:!/usr/bin/php %<CR>
  " parser check (CTRL-L)
  autocmd FileType php noremap <C-L> :!/usr/bin/php -l %<CR>

  " highlight current line only for current buffer
  "autocmd BufLeave * setlocal nocursorline
  "autocmd BufEnter * setlocal cursorline

  au BufRead,BufNewFile *.tea set filetype=tea
  "au! Syntax newlang source $VIM/newlanguage.vim

else
  set autoindent

endif
4

3 回答 3

1

:he swap-file

:se noswapfile您可以使用(小心!)禁用交换文件,或使用该`directory`设置将交换文件保存在本地磁盘上。

使用该选项启动 vim-n也会禁用交换文件;您可能希望将其与-R只读模式结合使用

于 2011-04-12T00:27:46.003 回答
1

同样的事情让我发疯,但我刚刚找到了一个解决方法。我真的不知道为什么,但是当你禁用 plugin/matchparen.vim 插件时问题就消失了(改变 vim 扩展名就可以了)。我肯定会研究它,因为我经常使用匹配的括号。

于 2011-04-08T16:07:08.890 回答
1

我发现的另一个解决方案是将 UNC 路径安装为本地驱动器号,并让 Vim 仅使用基于驱动器号的路径。
例如,\\some-server\path\to\workdir=>Z:\path\to\workdir

除非您遇到连接问题,否则这将完全消除延迟。

于 2012-12-10T10:17:38.683 回答