Windows gVim 7.3 在打开文件时创建了意外的文件夹

Windows gVim 7.3 is creating unexpected folders when opening a file

我的设置是:

  1. Windows7 SP1(企业版)
  2. gVim 7.3

每当我打开一个文件时,Gvim 都会在文件所在的同一文件夹中创建 2 个文件夹。文件夹的名称是 Files(x86)。这只是最近才开始发生。知道是什么原因造成的吗?

我的_vimrc档案如下

set nocompatible
source $VIMRUNTIME/vimrc_example.vim
behave xterm
set ic
set nu
set ai
set noswapfile
set nobackup
source $VIMRUNTIME/colors/darkblue.vim
set expandtab           " expand tabs
set shiftwidth=3 
set softtabstop=3
set ruler       " show the cursor position all the time

source $VIMRUNTIME/plugin/linuxsty.vim

你有安装插件吗?然后尝试 运行 没有它们(--noplugin 参数),也尝试普通的 Vim gvim -N -u NONE.

看起来有些插件没有正确引用参数。

您可以使用 vim -V20vimlog 捕获 Vim 会话的完整日志。退出 Vim 后,检查 vimlog 日志文件中是否有可疑命令。