From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/67840 Path: news.gmane.org!not-for-mail From: "Robert D. Crawford" Newsgroups: gmane.emacs.gnus.general Subject: Re: nnrss vs. copy link location Date: Tue, 02 Dec 2008 20:18:25 -0600 Message-ID: <878wqyroge.fsf@comcast.net> References: <87prkaf5dp.fsf@jidanni.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1228270827 9022 80.91.229.12 (3 Dec 2008 02:20:27 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 3 Dec 2008 02:20:27 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M16287@lists.math.uh.edu Wed Dec 03 03:21:29 2008 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.50) id 1L7hMm-0000e9-HA for ding-account@gmane.org; Wed, 03 Dec 2008 03:21:28 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1L7hLB-0002X9-Cu; Tue, 02 Dec 2008 20:19:49 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1L7hL9-0002Ww-PN for ding@lists.math.uh.edu; Tue, 02 Dec 2008 20:19:47 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1L7hL7-00007G-6R for ding@lists.math.uh.edu; Tue, 02 Dec 2008 20:19:47 -0600 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1L7hLH-00040q-00 for ; Wed, 03 Dec 2008 03:19:55 +0100 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1L7hL4-0008LJ-MW for ding@gnus.org; Wed, 03 Dec 2008 02:19:42 +0000 Original-Received: from c-98-211-29-41.hsd1.tn.comcast.net ([98.211.29.41]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 03 Dec 2008 02:19:42 +0000 Original-Received: from rdc1x by c-98-211-29-41.hsd1.tn.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 03 Dec 2008 02:19:42 +0000 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-Lines: 31 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: c-98-211-29-41.hsd1.tn.comcast.net Mail-Copies-To: never User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:VGbLpH/i1vRllm1rJ9LGL8f83TA= X-Spam-Score: -3.6 (---) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:67840 Archived-At: jidanni@jidanni.org writes: > I'm reading http://feedproxy.google.com/TorrentFreak in NNRSS, but > when I come across links like > US Pirate Party > there is no 'copy link location' etc. right click mouse keys etc. No > way to copy link location. If you want to copy the link into the kill ring for later yanking, here is some code that will do this. You did not mention whether you were using w3 or w3m to view html buffers, but this code will work either way: (defun rdc-gnus-save-url () "Saves the url to the kill-ring." (interactive) (if (eq browse-url-browser-function 'w3m-browse-url) (w3m-print-this-url) (progn (w3-view-this-url) (w3-save-this-url)))) (define-key gnus-article-mode-map "v" 'rdc-gnus-save-url) Helpful? rdc -- Robert D. Crawford rdc1x@comcast.net