From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Drew Adams Newsgroups: gmane.emacs.help Subject: RE: Search StackOverflow and paste code snippets without leaving the edited file Date: Fri, 10 Jan 2014 05:18:50 -0800 (PST) Message-ID: <6e4b1aba-1a4c-42bb-b69d-d90a81720fda@default> References: <871u0ni3nt.fsf@nl106-137-194.student.uu.se> <1389357782.26879.3.camel@homebase> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1389359975 19122 80.91.229.3 (10 Jan 2014 13:19:35 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 10 Jan 2014 13:19:35 +0000 (UTC) Cc: help-gnu-emacs@gnu.org, Emanuel Berg To: psmith@gnu.org, Andrey Tykhonov Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Jan 10 14:19:40 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1W1bzu-00039c-4i for geh-help-gnu-emacs@m.gmane.org; Fri, 10 Jan 2014 14:19:38 +0100 Original-Received: from localhost ([::1]:56886 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W1bzt-0006UV-JI for geh-help-gnu-emacs@m.gmane.org; Fri, 10 Jan 2014 08:19:37 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58842) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W1bzY-0006Is-98 for help-gnu-emacs@gnu.org; Fri, 10 Jan 2014 08:19:24 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W1bzP-0002VT-MS for help-gnu-emacs@gnu.org; Fri, 10 Jan 2014 08:19:16 -0500 Original-Received: from aserp1040.oracle.com ([141.146.126.69]:44202) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W1bzD-0002S8-TA; Fri, 10 Jan 2014 08:18:56 -0500 Original-Received: from acsinet21.oracle.com (acsinet21.oracle.com [141.146.126.237]) by aserp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with ESMTP id s0ADIqA3015430 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 10 Jan 2014 13:18:53 GMT Original-Received: from aserz7022.oracle.com (aserz7022.oracle.com [141.146.126.231]) by acsinet21.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id s0ADIp8J028727 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 10 Jan 2014 13:18:51 GMT Original-Received: from abhmp0002.oracle.com (abhmp0002.oracle.com [141.146.116.8]) by aserz7022.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id s0ADIp8h007118; Fri, 10 Jan 2014 13:18:51 GMT In-Reply-To: <1389357782.26879.3.camel@homebase> X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.8 (707110) [OL 12.0.6680.5000 (x86)] X-Source-IP: acsinet21.oracle.com [141.146.126.237] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 141.146.126.69 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:95333 Archived-At: > > I'm not sure that I chose right prefix "C-c o". I hope it will be > > ok. >=20 > Please do not use bindings with "C-c ". They seem unused > because they are reserved for customization by the individual user. > They're the only key bindings so reserved, and we really need to not > override them. Yes. To elaborate: In the Elisp manual, `i key TAB' shows `key bindings, conventions for'. Choosing that takes you to node `Key Binding Conventions', where you see this among other guidelines, right near the beginning: * Don't define `C-c LETTER' as a key in Lisp programs. Sequences consisting of `C-c' and a letter (either upper or lower case) are reserved for users; they are the *only* sequences reserved for users, so do not block them. If you are writing a major mode, you owe it to yourself to check the manual for this and other advice about writing modes. `i convention TAB' shows you, for example, index entries `conventions for writing major modes' and `conventions for writing minor modes'.