Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to move to GVim(cream) as my primary editor on Ubuntu. I am using the wonderful rails.vim, however I also am using RVM.

Rvm works fine when doing things in a shell, and the ruby version I would like to use in rails.vim is the version set as default (but not the system version).

When I try to run things like

:Rgenerate migration migration_name

I get:

...
Missing Rails 2.3.8 gem.
...

If I try:

:!rvm use default

I get:

/bin/bash: rvm: command not found

Obviously cream/gvim is not using my .bashrc. What can I do to remedy this and get it working? Thanks.

share|improve this question
1  
Same issue also present in gvim and only occurs when I use the application menu/Gnome Do to launch the application. If launch gvim from the shell then rvm works fine. – Alan Peabody Jun 18 '10 at 4:35

6 Answers

up vote 4 down vote accepted

Try running cream from the command line, if this solves the issue you can point your menu item to a script that opens cream in the context of a bash prompt.

share|improve this answer
This sounds the most promising. Any suggestions on how to go about doing this? Pointing me towards the right search terms so I can learn myself would be appreciated. – Alan Peabody Jul 6 '10 at 19:02
Try writing a file that contains cream & and save as whatever.sh, then try running that script. – thomasfedb Jul 12 '10 at 10:32

This is because you are sourcing the rvm scripts in your .zshrc file. MacVim does not source the .zshrc file, but will source the .zshenv file.

Add following line to your .vimrc file.

set shell=/bin/sh
share|improve this answer
I did that and it worked for me. Thank you! – Alban Jul 27 '12 at 20:58

You probably have used .bash_profile to add RVM stuff to your bash environment. Alas, ~/.bash_profile won't normally be read by X startup scripts, as stated in Ubuntu Help

Use .profile or .bashrc. The .profile is only sourced by bash if .bash_profile is not there. I would use .bashrc.

share|improve this answer
Oh, and don't forget to restart the X session after making changes. – fungusakafungus Jun 18 '10 at 21:37
Thanks. However, I actual already used .bashrc to add rvm. I was mistaken when I said bash profile above. – Alan Peabody Jun 19 '10 at 13:59
Thanks, this worked great. I'm on a clean install an haven't touched these files yet, so I assume RVM installed the RVM scripts line to my .bash_profile by default. Copying that line to the .bashrc fixed it next time I launched a new bash shell. – John S. Nov 21 '12 at 18:37

rvm is a bash function, which changes bash environment. Seems like it is not supposed to be run from inside vim. You can't change the environment of an already-running program.

share|improve this answer
Okay, so it should like What I need to do is launch it from the correct bash profile, perhaps like thomasfedb suggests. – Alan Peabody Jul 6 '10 at 19:01

Try rvm gem list to make sure the rails gem is actually installed. rails (2.3.8) should be listed. If its not run rvm gem install rails.

I'm a vim user, and rvm + rails.vim works fine for me. Including your :Rgenerate example.

share|improve this answer
RVM is installed, gvim just is not loading is the scope of the bash profile. – Alan Peabody Jul 6 '10 at 18:58

rvm is set on a per shell basis, so if you launch a new window or a new tab and you are using something other than your default interpreter and gemset you need to first

rvm gemset use my_rails238_gemset

and then

vim myshiz

share|improve this answer
This is pretty much what I have been doing. Launching gvim from the terminal results in the desired behavior. – Alan Peabody Jul 6 '10 at 18:59

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.