" Open firefox - maps to Option|Command|f

map <M-D-f> :!/Applications/Firefox.app/Contents/MacOS/firefox-bin -no-remote -P dev

The above works but blocks in Vim. I want to do:

map <M-D-f> :!/Applications/Firefox.app/Contents/MacOS/firefox-bin -no-remote -P dev &

but Firefox does not open. Any suggestions on creating a key binding for opening firefox from within vim in the background? BTW, I'm actually using macvim. Thanks.

link|improve this question

77% accept rate
feedback

1 Answer

try

:!open -a Firefox

or

map <M-D-f> :!open -a Firefox^M

Don't forget to type CTRL-v Enter to get the ^M.

I tested

map <C-f> :!/Applications/Firefox.app/Contents/MacOS/firefox-bin -no-remote -P dev &^M

(since <M- and <D- don't seem to work for me inside Terminal.app vim), and it worked for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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