如何阻止Vim创建* -e文件

最近我的Vim一直乱丢我的文件夹,额外的文件以-e结尾.例如,如果我正在编辑一个名为test.php的文件,有时候(但并非总是如此!)我将结束另一个名为test.php-e的文件.

我不知道是什么导致了这个,但它相当烦人.据我所知,我最近没有改变任何事情.备份文件都在我的〜/ .vim / backups目录中,所以我不确定这些东西来自哪里.思考?

最佳答案

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.
点赞