[mew-int 01938] Re: C-c C-e and HTML
Kazu Yamamoto ( 山本和彦 )
kazu at example.com
Wed Jan 19 08:55:03 JST 2005
> what's the right command to make mew's C-c C-e open an HTML mail in a
> new `tab window' of mozilla?
Mew's default browser is "mozilla". "C-c C-e" open an HTML file in the
current (not new) tab. You should research the syntax of Mozilla's
remote call and set the right argments to 'mew-prog-text/html-ext-arg'
to create a new tab.
P.S.
I'm using firefox and it's remote call format changed. So, the
following code exists in my .mew.el.
(setq my-browser "firefox")
(setq my-browser-arg `("-a" ,my-browser "-remote" "openFile(%s)"))
(setq mew-prog-text/html-ext my-browser)
(setq mew-prog-text/xml-ext my-browser)
(setq mew-prog-application/xml-ext my-browser)
(setq mew-prog-text/html-ext-arg my-browser-arg)
(setq mew-prog-text/xml-ext-arg my-browser-arg)
(setq mew-prog-application/xml-ext-arg my-browser-arg)
--Kazu
More information about the Mew-int
mailing list