--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
I'm going to make a few guesses, but this is what I think has happened:
* you edited ~/.vimrc
* you changed ~/.vimrc, but did not exit vim
* you told vim to edit ~/.vimrc again -- thus the changes you made to
~/.vimrc would be lost.
Vim is telling you that you have a Vim window open with the ~/.vimrc
file; by using :e again, you're telling vim to (re-)read ~/.vimrc,
wiping out what's currently in that window. Are you sure that that's
what you want? Vim has told you that to proceed to wipe out your
changes, use :e! ~/.vimrc (that "add ! to override" message). Now for
a guess: you've opened a second instance of Vim and you're trying to
edit the same file again. I suggest looking for the first instance of
Vim that you've got running and to save (or not save) that window.
Plus, I suggest using vimtutor.
Regards,
Chip Campbell