From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/9314 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.user Subject: Re: How to copy URL's to clipboard? Date: Thu, 12 Jul 2007 20:18:55 +0900 Organization: Emacsen advocacy group Message-ID: References: <87myy32bzt.fsf@gmail.com> <874pkadkxw.fsf@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1184240428 10308 80.91.229.12 (12 Jul 2007 11:40:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 12 Jul 2007 11:40:28 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Thu Jul 12 13:40:26 2007 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1I8x22-0005zH-1j for gegu-info-gnus-english@m.gmane.org; Thu, 12 Jul 2007 13:40:26 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I8x1z-0005so-7h for gegu-info-gnus-english@m.gmane.org; Thu, 12 Jul 2007 07:40:23 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!uio.no!quimby.gnus.org!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 20 Original-NNTP-Posting-Host: orlando.hostforweb.net Original-X-Trace: quimby.gnus.org 1184239145 13721 216.246.45.90 (12 Jul 2007 11:19:05 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Thu, 12 Jul 2007 11:19:05 +0000 (UTC) X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1.50 (gnu/linux) Cancel-Lock: sha1:oEp9iTJH7eQM2sD1+C5cmC+IrT4= Original-Xref: shelby.stanford.edu gnu.emacs.gnus:79500 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:9314 Archived-At: >>>>> Hadron wrote: > To recap : I would like another w3m function which allows me to > "browse-url" (and thus firefox) for an embedded link. Or is it already > there? Try adding the following snippets to your ~/.emacs-w3m.el file: --8<---------------cut here---------------start------------->8--- (defun my-w3m-view-this-url-with-firefox () "View the URL of the link under point using Firefox." (interactive) (let ((w3m-goto-article-function 'browse-url-firefox)) (w3m-safe-view-this-url))) (define-key w3m-minor-mode-map "vv" 'my-w3m-view-this-url-with-firefox) --8<---------------cut here---------------end--------------->8--- You can change the `vv' key as you like, but it is a good idea to use `v'-prefixed keys since Gnus reserves them for user's commands.