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.
当我在 Windows 上使用 vim 时,我意识到 vim 会保存文件并关闭 vim 窗口会删除一个 .ext.swp 文件和一个 .ext~ 文件
当我在主机上工作时,如何禁用或删除这些文件,因为重复项会导致我的问题。
关闭 vim 交换文件和备份文件以禁用这些文件的创建:
:set noswapfile和:set nobackup。
:set noswapfile
:set nobackup
有关更多信息,请参阅此问题。