From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: Putting == before and after selected text Date: Sun, 25 Apr 2010 11:48:36 -0400 Message-ID: References: <87eii5521m.fsf@merciadriluca-eee.WORKGROUP> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1273015418 6754 80.91.229.12 (4 May 2010 23:23:38 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 4 May 2010 23:23:38 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed May 05 01:23:38 2010 connect(): No such file or directory Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1O9RSj-00018a-5g for geh-help-gnu-emacs@m.gmane.org; Wed, 05 May 2010 01:23:37 +0200 Original-Received: from localhost ([127.0.0.1]:46444 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O9RSi-0007FT-IH for geh-help-gnu-emacs@m.gmane.org; Tue, 04 May 2010 19:23:36 -0400 Original-Path: usenet.stanford.edu!news.glorb.com!news2.glorb.com!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!post01.iad.highwinds-media.com!newsfe23.iad.POSTED!7564ea0f!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:z9mDk1c+MThwf9AJ95ndEvTUnRI= Original-Lines: 15 Original-X-Complaints-To: abuse@UsenetServer.com Original-NNTP-Posting-Date: Sun, 25 Apr 2010 15:48:36 UTC Original-Xref: usenet.stanford.edu gnu.emacs.help:177864 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:73283 Archived-At: > I would like some key to a command. This is not difficult, but this > command should, once it is executed on some text, put `==' before the > text (on the line before) and `==' after the text (on the line after). > How could I do this? (define-skeleton my-==-command "Insert == before and after the region" nil "--" _ "--") Then you can call that command with M-x my-==-command RET You'll probably want to bind it via define-key in some mode. Stefan