4

最近、私のVimは私のフォルダに.で終わる余分なファイルを散らかしています-e. たとえば、 というファイルを編集している場合test.php、ときどき (ただし常にではありません!) という別のファイルも編集することがありtest.php-eます。

何が原因なのかわかりませんが、かなり面倒です。私が知る限り、私は最近何も変更していません。バックアップ ファイルはすべて私の~/.vim/backupsディレクトリに格納されるため、これらのファイルがどこから来たのかわかりません。考え?

4

1 に答える 1

2
set nobackup

または、バックアップ ディレクトリを /tmp などに設定し、時々パージします。

VIM ドキュメントから (: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.
于 2013-03-05T14:39:33.393 に答える