What is a .un~ file or or why does Vim in the Terminal make the .un~ file?

泪湿孤枕 提交于 2019-12-02 14:35:10
TheEwook

When you edit and save files, Vim creates a file with the same name as the original file and an un~ extension at the end.

Vim 7.3 contains a new feature persistent undo, that is, undo information won't be lost when quitting Vim and be stored in a file that ends with .un~. You have set the undofile option, so Vim creates an undo file when saving the original file. You can stop Vim from creating the backup file, by clearing the option:

:set noundofile

Note that, by default this option is turned off. You have explicitly enabled the undofile option in one of the initialization files. If you want your undofiles to be stored only in a particular directory, you can point the undodir option to a directory that will contain all your aggregated undofiles.

Source: http://vimhelp.appspot.com/vim_faq.txt.html#faq-7.2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!