emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: org-mode setting the browser with options


From: Neil Cherry
Subject: Re: org-mode setting the browser with options
Date: Wed, 29 Apr 2020 18:49:25 -0400
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.7.0

On 4/29/20 6:30 PM, Tim Cross wrote:
> 
> Jude DaShiell <address@hidden> writes:
> 
>> Two different scripts one yproxy and the other nproxy.
>> Put the necessary running code in each.
>>
>> On Wed, 29 Apr 2020, Neil Cherry wrote:
>>
>>> Date: Wed, 29 Apr 2020 13:36:50
>>> From: Neil Cherry <address@hidden>
>>> To: Org Mode <address@hidden>
>>> Subject: org-mode setting the browser with options
>>>
>>> I need to use 2 different Windows browser (proxy and no-proxy is the 
>>> reason).
>>>
>>> What I want to do is that if it's example.com use firefox (no options). If 
>>> it's
>>> example.org use chrome --no-proxy-server. I'm not exacly sure how to 
>>> approach this.
>>>
>>> Thanks
>>>
>>>
> 
> I would look at browse-url built-in package. With browse-url you can set
> a function that will determine which browser to use based on the url and
> you can set the options for each supported browser. 
> 

Thanks, that got me thinking and search-fu found:

(setq
 browse-url-browser-function
 '(
  ("example\\.com" . browse-url-chrome)
  ("example\\.org" . browse-url-chrome)
  ("." . browse-url-default-browser)
  ))

Which works perfect!

Thanks
-- 
Linux Home Automation         Neil Cherry       address@hidden
http://www.linuxha.com/                         Main site
http://linuxha.blogspot.com/                    My HA Blog
Author of:      Linux Smart Homes For Dummies



reply via email to

[Prev in Thread] Current Thread [Next in Thread]