OSX: Environment variables pointing to application bundles? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T01:11:25Zhttp://stackoverflow.com/feeds/question/427825http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/427825/osx-environment-variables-pointing-to-application-bundles1OSX: Environment variables pointing to application bundles?Benjamin Buch2009-01-09T11:58:10Z2009-04-08T18:30:27Z
<p>I want cscope to open files in MacVim instead of vim, so I'm trying to have the path to MacVim as the Value of the EDITOR environment variable which is used by cscope:</p>
<pre>$ export EDITOR=/Applications/MacVim.app/Contents/MacOS/MacVim</pre>
<p>If I'm now trying to edit a file from within ctags, it won't work an throws this error message:</p>
<pre>$ MacVim[8384:10b] No Info.plist file in application bundle or no NSPrincipalClass in the Info.plist file, exiting</pre>
<p>Calling MacVim from the commandline with</p>
<pre>$ /Applications/MacVim.app/Contents/MacOS/MacVim</pre>
<p>works, though.</p>
<p>How can I fix this?</p>
http://stackoverflow.com/questions/427825/osx-environment-variables-pointing-to-application-bundles/427911#4279110Answer by frankodwyer for OSX: Environment variables pointing to application bundles?frankodwyer2009-01-09T12:36:48Z2009-01-09T12:36:48Z<p>Have you tried export EDITOR=/Applications/MacVim.app?</p>
<p>Or wrapping MacVim in a small script that uses open to start the app?</p>
http://stackoverflow.com/questions/427825/osx-environment-variables-pointing-to-application-bundles/428830#4288300Answer by Tony for OSX: Environment variables pointing to application bundles?Tony2009-01-09T16:51:03Z2009-01-09T16:51:03Z<p>It works fine for me when I set my EXPORT variable to exactly that, and start a git commit. What are you using that's calling it? Have you considered setting EXPORT to point to the mvim script that comes on the MacVim disk image instead?</p>
http://stackoverflow.com/questions/427825/osx-environment-variables-pointing-to-application-bundles/429182#4291821Answer by Benjamin Buch for OSX: Environment variables pointing to application bundles?Benjamin Buch2009-01-09T18:36:19Z2009-01-09T18:36:19Z<p>Pointing EDITOR to the mvim script worked. I found it at /usr/local/bin/mvim.
But I still wonder what to do if I would like to point it to an app that provides no script.
Just write a new one every time? Seems annoying... </p>
http://stackoverflow.com/questions/427825/osx-environment-variables-pointing-to-application-bundles/546666#5466662Answer by Jim Garvin for OSX: Environment variables pointing to application bundles?Jim Garvin2009-02-13T16:41:21Z2009-02-13T16:41:21Z<p>Make sure you put the mvim script in your path, and try this out:</p>
<p>export EDITOR="mvim -f"</p>
<p>This was the ticket for me when using MacVim as editing git commit messages.</p>
http://stackoverflow.com/questions/427825/osx-environment-variables-pointing-to-application-bundles/731251#7312510Answer by Nicholas Riley for OSX: Environment variables pointing to application bundles?Nicholas Riley2009-04-08T18:30:27Z2009-04-08T18:30:27Z<p><code><plug></code></p>
<p>My <a href="http://web.sabi.net/nriley/software/#launch" rel="nofollow">launch</a> tool is designed for this. It's like Apple's <code>open</code>, but allows you to get the path to an application bundle rather than launching it. For example:</p>
<pre><code>% launch -ni com.apple.safari
/Applications/Safari.app
</code></pre>
<p><code>launch</code> is in Fink and MacPorts too.</p>
<p><code></plug></code></p>