From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?iso-8859-1?Q?Ren=E9?= Kyllingstad Newsgroups: gmane.emacs.devel Subject: Re: Improving X selection? Date: Tue, 16 Oct 2007 12:08:24 +0200 Message-ID: References: <20071012105022.6c8b174a@tweety> <874pgtfw1y.fsf@jbms.ath.cx> <4713067D.2060504@swipnet.se> <87fy0cdvr6.fsf@jbms.ath.cx> <471467FF.5070005@swipnet.se> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1192529425 3557 80.91.229.12 (16 Oct 2007 10:10:25 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 16 Oct 2007 10:10:25 +0000 (UTC) Cc: tom.horsley@ccur.com, emacs-devel@gnu.org, rms@gnu.org, Jeremy Maitin-Shepard To: Jan =?iso-8859-1?Q?Dj=E4rv?= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Oct 16 12:10:15 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IhjNM-0004di-8O for ged-emacs-devel@m.gmane.org; Tue, 16 Oct 2007 12:10:12 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IhjNF-0000bI-6q for ged-emacs-devel@m.gmane.org; Tue, 16 Oct 2007 06:10:05 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IhjLp-000093-6x for emacs-devel@gnu.org; Tue, 16 Oct 2007 06:08:37 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IhjLj-00006s-VE for emacs-devel@gnu.org; Tue, 16 Oct 2007 06:08:36 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IhjLj-00006m-MT for emacs-devel@gnu.org; Tue, 16 Oct 2007 06:08:31 -0400 Original-Received: from mail.esmertec.com ([212.249.37.45] helo=postie.esmertec.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IhjLh-000849-AX; Tue, 16 Oct 2007 06:08:29 -0400 Original-Received: by postie.esmertec.com (Postfix, from userid 1002) id 7A1CE1BAA6; Tue, 16 Oct 2007 12:08:27 +0200 (CEST) Original-Received: from mail.esmertec.com (unknown [10.10.10.10]) by postie.esmertec.com (Postfix) with ESMTP id 00F1E1A24C; Tue, 16 Oct 2007 12:08:27 +0200 (CEST) Original-Received: from BARBUDA ([10.10.9.60]) by mail.esmertec.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 16 Oct 2007 12:08:26 +0200 In-Reply-To: <471467FF.5070005@swipnet.se> (Jan =?iso-8859-1?Q?Dj=E4rv's?= message of "Tue, 16 Oct 2007 09:27:59 +0200") User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.4.19 (windows-nt) X-OriginalArrivalTime: 16 Oct 2007 10:08:26.0580 (UTC) FILETIME=[7E460940:01C80FDC] X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:81006 Archived-At: * Jan Dj=E4rv: > Jeremy Maitin-Shepard skrev: > =20 > > I'd like there to be some convenient way to paste either the PRIMARY > > selection or the CLIPBOARD selection using only keyboard commands. > =20 > A separate key command to paste CLIPBOARD in addition to C-y (that > pastes PRIMARY)? Please ignore this if it's already been hammered to death, but what about using C-Insert/Shift-Insert for the clipboard? I've been using this for years, and find it easy to remember since they a= re already used for copy and paste. They are less convenient to type than M= -w and C-y, which is fine since I copy to the clipboard far less often then = I move text around in Emacs itself. -- Ren=E9 (global-set-key [(shift insert)] 'clipboard-yank) (global-set-key [(control insert)] 'clipboard-kill-ring-save))