From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/4981 Path: news.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.gnus.user Subject: Re: saving a link in gnus Date: Wed, 27 Apr 2005 21:42:53 +0200 Organization: http://purl.org/harder/ Message-ID: <87hdhs2egy.fsf@Jesper-Harders-Computer.local> References: <86d5sinniq.fsf@zihua.cmconn.net> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138670814 25640 80.91.229.2 (31 Jan 2006 01:26:54 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:26:54 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:34:36 2006 Original-Path: quimby.gnus.org!newsfeed1.e.nsc.no!uio.no!newsfeed1.uni2.dk!news.get2net.dk.POSTED!53ab2750!not-for-mail Original-Newsgroups: gnu.emacs.gnus X-Face: ^RrvqCr7c,P$zTR:QED"@h9+BTm-"fjZJJ-3=OU7.)i/K]<.J88}s>'Z_$r; cmc3list-goat@diespammersdie.yahoo.com writes: > Right now I can drag my mouse across the link and then paste > it into the location bar but it would be nice to do this with > a few clicks. Is there a way? (I am not a lisp programmer, BTW) You could bind something like this to a key sequence (or maybe a mouse event): (defun save-url () "Copy URL at point." (interactive) (kill-new (thing-at-point 'url)))