Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个密码文件,在 vim 中编辑它时,我想确保 vim 不会创建交换/备份文件。这个怎么设置?
我已经看到了: 如何防止 vim 创建(和留下)临时文件?
但我不希望所有文件都使用这个,只需要一个特定的文件。这可能吗?
如果您的文件可以包含注释,您可以通过在文件的开头或结尾添加模式行来设置nobackup和 noswapfile 。
像这样的东西:
# vim: set nobackup noswapfile:
您可以使用autocmdtoset nobackup匹配特定模式/扩展名的文件名或文件名:
autocmd
set nobackup
autocmd BufRead,BufNewFile passwordfilename set nobackup autocmd BufRead,BufNewFile passwordfilename set noswapfile