vote up 0 vote down star

Problem 1: my Vim makes backups with the extension ~ to my root

I have the following line in my .vimrc

set backup backupdir=~/tmp/vim//,~/tmp//,.//,/var/tmp//,/tmp//$

However, I cannot see a root directory in the line.

Why does my Vim make backups of my shell scripts with the extension ~ to my root?


Problem 2: my Zsh run my shell scripts at login which I have in my PATH. For instance, my "replaceUp" shell-script started at my root at login. I keep it at ~/bin/shells/apps by default.

Why does Zsh run shell scripts which are in my PATH at login?

flag

1  
What editor did you use to modify .zshrc? At least one editor (emacs) automatically creates backups of modified files with ~ as a suffix. – Nathan Kitchen May 24 at 2:58
@Nathan: I use mostly Vim. I use Emacs only in readig manuals. -- I have the following in my .vimrc: set backup backupdir=~/tmp/vim//,~/tmp//,.//,/var/tmp//,/tmp//$ . Perhaps, it is the reason for my strange backups. – Masi May 24 at 11:22
1  
When you say "root", do you mean your home directory or the file system root ("/")? – glenn jackman May 24 at 12:48
@glenn: I mean file system root "/". That is the problem. I do not understand why my backups go to my root, which I want to keep a "sacred heaven". – Masi May 24 at 13:23

1 Answer

vote up 4 vote down check

The files ending with ~ are swap files used by vim while editing files. You can try setting the backupdir and directory variables

set backupdir=~/tmp/vim//,~/tmp//,.//,/var/tmp//,/tmp//
set directory=~/tmp/vim//,~/tmp//,.//,/var/tmp//,/tmp//
link|flag
1  
Why do you write double slashes after directory names (does it mean something?) What does the $-sign do? I would just write "set backupdir=~/tmp/vim,~/tmp,.,/var/tmp,/tmp" – hcs42 May 26 at 6:42
@hcs42: Thank you for pointing that out! The dollars caused me some unexpected problems. – Masi Jun 2 at 18:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.