all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kenneth Goldman <kgoldman@us.ibm.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Wrap predefined text around region
Date: Fri, 3 Dec 2010 09:31:00 -0500	[thread overview]
Message-ID: <OFDE32F692.BF8D3319-ON852577EE.004F809D-852577EE.004FBDFC@us.ibm.com> (raw)
In-Reply-To: <87fwufhlup.fsf@newsguy.com>

[-- Attachment #1: Type: text/plain, Size: 1393 bytes --]

Like you, I have a huge .emacs that I've acquired over the years.  Here's 
what I use to comment out a C region with #if 0:

                (define-key c-mode-base-map "\C-ci" 'if0-region)

; function to comment a region using #if 0

(defun if0-region (p1 p2)
  (interactive "r")
  (let* ()
  (goto-char p1)
  (beginning-of-line)
 
  (insert "#if 0\n")
  (goto-char (+ p2 +9))
  (beginning-of-line)
  (insert "#endif\n")))



From:   Harry Putnam <reader@newsguy.com>
To:     help-gnu-emacs@gnu.org
Date:   12/02/2010 05:06 PM
Subject:        Wrap predefined text around region
Sent by:        help-gnu-emacs-bounces+kgold=watson.ibm.com@gnu.org



Can anyone show an example of how to do something like this:

I want to wrap this:

  # [HP 101202_15:55:07 
  # ] 

Around the selected text... 
   <selected text region here>
   <selected text region here>
   <selected text region here>
   <selected text region here>

that is, select some text and press a key
combo ... voila... its now surrounded by:
  # [HP 101202_15:55:07 

  # ] 

Over the yrs I've acquired a fairly lengthy .emacs mostly by theft
from more skilled people.  Coding something like that is clear out of
my skill set.

I use lots of `skeleton' things for inserting various predefined texts
but don't know how to make that happen to selected region.

Usually given an example, I've been able to hack it up to my needs.




[-- Attachment #2: Type: text/html, Size: 2932 bytes --]

      parent reply	other threads:[~2010-12-03 14:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-02 22:05 Wrap predefined text around region Harry Putnam
2010-12-03 10:18 ` Kevin Rodgers
2010-12-03 12:14 ` Andreas Röhler
2010-12-03 14:31 ` Kenneth Goldman [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=OFDE32F692.BF8D3319-ON852577EE.004F809D-852577EE.004FBDFC@us.ibm.com \
    --to=kgoldman@us.ibm.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.