OSX: Environment variables pointing to application bundles? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:11:25Z http://stackoverflow.com/feeds/question/427825 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/427825/osx-environment-variables-pointing-to-application-bundles 1 OSX: Environment variables pointing to application bundles? Benjamin Buch 2009-01-09T11:58:10Z 2009-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#427911 0 Answer by frankodwyer for OSX: Environment variables pointing to application bundles? frankodwyer 2009-01-09T12:36:48Z 2009-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#428830 0 Answer by Tony for OSX: Environment variables pointing to application bundles? Tony 2009-01-09T16:51:03Z 2009-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#429182 1 Answer by Benjamin Buch for OSX: Environment variables pointing to application bundles? Benjamin Buch 2009-01-09T18:36:19Z 2009-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#546666 2 Answer by Jim Garvin for OSX: Environment variables pointing to application bundles? Jim Garvin 2009-02-13T16:41:21Z 2009-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#731251 0 Answer by Nicholas Riley for OSX: Environment variables pointing to application bundles? Nicholas Riley 2009-04-08T18:30:27Z 2009-04-08T18:30:27Z <p><code>&lt;plug&gt;</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>&lt;/plug&gt;</code></p>