in reply to MANIFEST.SKIP and ignoring gvim .swp files
This is a workaround answer rather than a direct one, but I've taken to storing all my vim backups/swap files in a single designated directory rather than scattered around. (I want them to exist, but I don't want them cluttering up my working space.) Put this in your .vimrc file (and create whatever directories you specify):
set backupdir=~/.vimbackups// set directory=~/.vimswap//
The double backslash makes vim convert the full pathname of your file into the name of the swap/backup files created. Read ":h dir" and ":h bdir" for details.
-xdg
Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.
|
|---|