最近,我的Vim一直在乱扔我的文件夹,其中额外的文件以-e
结尾。例如,如果我正在编辑一个名为test.php
的文件,有时(但并非总是如此!)我也会使用另一个名为test.php-e
的文件。
我不知道造成这种情况的原因,但这很烦人。据我所知,我最近没有改变任何事情。备份文件都在我的~/.vim/backups
目录中,所以我不确定这些东西来自哪里。想法?
答案 0 :(得分:2)
set nobackup
或将备份目录设置为/ tmp和不时清除。
来自VIM docs(:help nobackup)
'backup' 'bk' boolean (default off)
global
{not in Vi}
Make a backup before overwriting a file. Leave it around after the
file has been successfully written. If you do not want to keep the
backup file, but you do want a backup while the file is being
written, reset this option and set the 'writebackup' option (this is
the default). If you do not want a backup file at all reset both
options (use this if your file system is almost full). See the
|backup-table| for more explanations.
When the 'backupskip' pattern matches, a backup is not made anyway.
When 'patchmode' is set, the backup may be renamed to become the
oldest version of a file.
NOTE: This option is reset when 'compatible' is set.