Sunday, 26 June 2016

vi stop making undo files

.un~ files are undo files generated by vi.

in .vimrc you can write following line to avoid making these files

set noundofile
 
 
To avoid making backup and swap files, write following lines
set nobackup
set nowritebackup
set noswapfile 
set noundofile 

No comments:

Post a Comment