Apologies if this is an obvious problem, but the solutions I've been looking at don't seem to work.
When I load MacVim (via mvim from the terminal), the following error messages appear: >Error detected while processing /Users/jweed/.vimrc: >line 2: >E488: Trailing characters: nocompatible^M >line 5: >E474: Invalid argument: columns=80^M >line 6: >E474: Invalid argument: wrapmargin=8^M >line 7: >E492: Not an editor command: ^M Based on information I've found online, this seems to be a problem with line encodings. The only solutions I've found suggest fixing this problem by running a substitute command: %s/\r/\r/g. I've tried this (from inside MacVim) and it seems to work fine, but when I restart mvim the same error occurs and my .vimrc options are not set. Any suggestions? For reference, my .vimrc appears below, as it appears when I open it in macvim. Thanks, Jonathan ---- ab imgdiv ^M<div class="separator" style="clear: both; text-align: center;" markdown="1">^M^M</div> set nocompatible map \ :w^M:!/Users/jweed/bin/markdown <"%" \| /Users/jweed/bin/mvim - ^M map :w^M:!/Users/jweed/bin/markdown <"%" >"%.html"^M^M:!open "%.html"^M^M set columns=80 set wrapmargin=8 -- You received this message from the "vim_mac" 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
