Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here's my error:

~> vim .tmux.conf 
Error detected while processing /Users/###/.spf13-vim-3/.vim/bundle/syntastic/plugin/syntastic.vim:
line   23:
E484: Can't open file /var/folders/c4/4nb5t7cs3wb17_g1w5030xc40000gn/T/vmIMCqB/0
Error detected while processing /Users/###/.spf13-vim-3/.vim/bundle/vim-preview/plugin/preview.vim:
line   94:
E484: Can't open file /var/folders/c4/4nb5t7cs3wb17_g1w5030xc40000gn/T/vmIMCqB/1
Press ENTER or type command to continue

I've checked those lines in each file and they both call system('uname'), which I'm unfamiliar with. I thought this error might have something to do with TERM (which is xterm-256color outside tmux and screen-256color inside), but changing this in the .tmux.conf has no effect.

This happens with any file.

I'm on Mac OS X 10.8.1, vim 7.3, tmux 1.6 and am using the fish shell.

share|improve this question
Do these /var/… folders exist? Why is your .vim/ folder located in that ~/.spf13-vim-3 folder? Why would uname try to read the content of some random temporary folder? – romainl Sep 1 '12 at 20:26
Does running uname at the console generate a similar error? – Michael C Schuller Sep 1 '12 at 20:48
Michael - uname prints "Darwin" – schellsan Sep 1 '12 at 20:52
Romani - /var exists, and after reading about the system() function I see that it executes a shell command and prints it to a temp file, then reads it back out...vimdoc.sourceforge.net/htmldoc/eval.html#system() – schellsan Sep 1 '12 at 20:54
Romani - also, spf13 is a customized vim distro (github.com/spf13/spf13-vim) – schellsan Sep 1 '12 at 20:56

1 Answer

up vote 3 down vote accepted

The problem is caused by my use of the fish shell as the default shell (set in my .tmux.conf). This post helped me sort things out - http://us.generation-nt.com/answer/bug-609599-vim-runtime-error-detected-while-processing-usr-share-vim-vim73-ftplugin-ruby-vim-line-83-help-201710592.html. Thanks commenters @Michael and @Romani.

share|improve this answer
specifically - I added set shell=/bin/sh to the beginning of my .vimrc – schellsan Sep 1 '12 at 21:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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