GVIM on windows: way to disable the tmp file creation

前端 未结 5 2197
悲哀的现实
悲哀的现实 2021-02-01 02:47

I use gvim on windows and I want to know a way to disable the temp file(ending in ~) file creation. Also is there a problem if we do it?

5条回答
  •  不要未来只要你来
    2021-02-01 03:06

    You can disable the backup file by putting this line in your .vimrc:

    set nobackup
    

    I almost always do this, as the ~ file is more annoying that useful. There is no problem with doing this, you'll just lose the ability to revert to a backup of the file.

    If you want to get rid of the temporary .swp (swap) file too, you can also set this:

    set noswapfile
    

    The swap file is created when you have a file open, and provides some backup/recovery security, in case Vim crashes while editing a file. It also can prevent multiple Vims from editing the same file. I usually just turn this off too, because I rarely have a use for it. The .swp file isn't as annoying as the ~ file, because it goes away when you close Vim, but I still just turn that feature off.

提交回复
热议问题