What is the purpose of the X~ files? And if its unnecessary, is there a way to prevent Vim from creating one?
|
|
|
its a backup file, every time you save while modifying something it will create one. There's an option to turn it off. |
|||
|
|
|
This is a backup file that contains a copy of the previous revision of the file. You can change this behavior by adding a line to the end of your .vimrc file:
|
|||
|
|
|
What I personally do is that I create a folder My
This way you have the protection of backup files but avoid the littering of your folders with |
|||||
|
|
Turn it off using
You can also tell it to put the backup file in a different location by using:
|
|||
|
|
|
Vim is creating backup files automatically. To turn it off you have to add the following line to your .vimrc config file:
|
|||
|
|