unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Oliver Scholz <alkibiades@gmx.de>
Subject: Re: How run a command JUST on region highlighted by MOUSE?!?!
Date: Fri, 29 Aug 2003 20:34:16 +0200	[thread overview]
Message-ID: <uad9s9utz.fsf@ID-87814.user.dfncis.de> (raw)
In-Reply-To: bf23f78f.0308291022.7a25268f@posting.google.com

seberino@spawar.navy.mil (Christian Seberino) writes:

> Andrew
>
> Thanks for the help.  Can I please ask you a related question on usage
> of narrow-to-region?
>
> I set .emacs up to run this function when I highlight a region with
> mouse
> and type C-ac.....
>
>  (defun cs-py-comment-region() (interactive)
>       (narrow-to-region)
                        ^^^
>       (py-comment-region)
>       (delete-trailing-whitespace)
>       (widen))
         ^^^^

[untested]

(defun cs-py-comment-region (beg end)
  (interactive "r")
  (save-restriction
    (narrow-to-region beg end)
    (py-comment-region)
    (delete-trailing-whitespace)))

    Oliver
-- 
12 Fructidor an 211 de la Révolution
Liberté, Egalité, Fraternité!

  reply	other threads:[~2003-08-29 18:34 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-08-28 21:24 How run a command JUST on region highlighted by MOUSE?!?! Christian Seberino
2003-08-28 21:32 ` Andrew Taylor
2003-08-29 18:22   ` Christian Seberino
2003-08-29 18:34     ` Oliver Scholz [this message]
2003-09-03  0:03       ` Christian Seberino
2003-09-03  0:19       ` Christian Seberino
2003-08-29 18:56     ` Johan Bockgård
2003-08-29 21:45     ` Kevin Rodgers
2003-09-03  0:16       ` Christian Seberino
2003-09-03 22:04         ` Jeffery B. Rancier
2003-09-03 23:13         ` Kevin Rodgers

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=uad9s9utz.fsf@ID-87814.user.dfncis.de \
    --to=alkibiades@gmx.de \
    /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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).