[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Orgmode] Re: default browser - SOLVED
From: |
Matt Lundin |
Subject: |
[Orgmode] Re: default browser - SOLVED |
Date: |
Fri, 26 Feb 2010 17:03:50 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.1.92 (gnu/linux) |
Daniel Martins <address@hidden> writes:
>
> You solved for me a quite annoying issue related to org that I could
> not solve!
>
> For those who use firefox these two lines become:
>
> (setq browse-url-browser-function (quote browse-url-generic))
> (setq browse-url-generic-program "firefox")
>
> Simply copy and paste it!!
Rather than browse-url-generic, I use the built-in browse-url-firefox:
--8<---------------cut here---------------start------------->8---
(setq browse-url-browser-function 'browse-url-firefox)
(setq browse-url-firefox-new-window-is-tab t)
--8<---------------cut here---------------end--------------->8---
The second setting ensures that links are opened in new tabs if firefox
is running.
Best,
Matt