From: Drew Adams <drew.adams@oracle.com>
To: Emanuel Berg <moasenwood@zoho.eu>
Cc: help-gnu-emacs@gnu.org
Subject: RE: finding the hork point in ~/.emacs
Date: Wed, 26 Aug 2020 19:58:23 -0700 (PDT) [thread overview]
Message-ID: <bdb7f33d-8eeb-433a-8ccb-0e1c1b4c326c@default> (raw)
In-Reply-To: <87a6ygj01j.fsf@ebih.ebihd>
[I really must remember that Reply All to you doesn't
send to the list, for some reason. Sending again,
ccing it explicitly.]
> > If you use `C-u M-x comment-region' it UNcomments.
>
> Try M-; for `comment-dwim'. It comments and then
> uncomments if the region contains a comment.
... which is not as good as `comment-region', IMHO.
I use `M-;' only for eol comments. IMO, it's not
really made for block (un)commenting.
`comment-region' works well with nesting comment
blocks - it unnests a given level of nesting.
(Almost like having Common Lisp's `#|' and `|#'.)
`M-;' commenting or uncommenting a line in the
region, depending on whether the line is commented,
is never what I want. It's a poor substitute for
uncommenting a given level of commenting. YMMV.
> Also, this preserves comments already there. So if you have
> ... do M-;
> ... do M-; again ...
`comment-region' does all of that, & more, & better.
I actually use my `comment-region-lines', which I
bind to `C-x C-;':
(defun comment-region-lines (beg end &optional arg)
"Like `comment-region', but comment/uncomment whole lines."
(interactive "*r\nP")
(when (> beg end)
(setq beg (prog1 end (setq end beg))))
(let ((bol (save-excursion
(goto-char beg)
(line-beginning-position)))
(eol (save-excursion
(goto-char end)
(if (bolp) (point) (line-end-position)))))
(comment-region bol eol arg)))
> M-; is also one of the most ergonomic keystrokes on
> the keyboard, so make sure to use it often :)
`M-;' has been there forever for eol comments, long
before they added half-baked region-(un)commenting
behavior to it.
next prev parent reply other threads:[~2020-08-27 2:58 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-26 20:08 finding the hork point in ~/.emacs ken
2020-08-26 20:10 ` Yuan Fu
2020-08-26 20:12 ` Stefan Kangas
2020-08-26 22:38 ` ken
2020-08-26 23:27 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-26 23:39 ` ken
2020-08-27 0:23 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-27 4:08 ` Eli Zaretskii
2020-08-27 17:24 ` ken
2020-08-27 17:42 ` Eli Zaretskii
2020-08-27 22:40 ` ken
2020-08-28 6:41 ` Eli Zaretskii
2020-08-28 11:56 ` ken
2020-08-27 17:17 ` finding the hork point in ~/.emacs: timerp ken
2020-08-27 17:34 ` Noam Postavsky
2020-08-28 10:07 ` hork point in ~/.emacs: -Q and --debug outputs in terminal & *Messages* ken
2020-08-28 11:13 ` Eli Zaretskii
2020-08-28 12:08 ` ken
2020-08-28 12:39 ` Eli Zaretskii
2020-08-28 13:02 ` ken
2020-08-28 13:19 ` Eli Zaretskii
[not found] ` <d4982eda-fd8a-c2fd-3342-b446d83218fc@mousecar.com>
2020-08-29 12:47 ` Eli Zaretskii
2020-08-29 16:02 ` hork point in ~/.emacs: needing emacs.pdmp & other ken
2020-08-29 18:13 ` Eli Zaretskii
2020-08-29 18:59 ` Yuri Khan
2020-08-29 19:21 ` Eli Zaretskii
2020-08-29 21:49 ` Togan Muftuoglu via Users list for the GNU Emacs text editor
2020-08-31 11:30 ` ken
2020-08-28 13:13 ` hork point in ~/.emacs: -Q and --debug outputs in terminal & *Messages* ken
2020-08-28 13:21 ` Eli Zaretskii
2020-08-27 17:41 ` finding the hork point in ~/.emacs: timerp Robert Pluim
2020-08-27 17:43 ` Noam Postavsky
2020-08-28 10:50 ` ken
2020-08-28 11:17 ` Eli Zaretskii
2020-08-28 12:26 ` ken
2020-08-28 12:41 ` Eli Zaretskii
2020-08-29 12:14 ` ken
2020-08-28 12:46 ` finding the hork point in ~/.emacs -> emacs.pdmp ken
2020-08-26 20:52 ` finding the hork point in ~/.emacs Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-26 23:37 ` ken
2020-08-27 0:46 ` Eric Abrahamsen
2020-08-27 2:18 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-27 0:53 ` Carson Chittom
2020-08-27 1:42 ` Drew Adams
2020-08-27 2:27 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-27 2:58 ` Drew Adams [this message]
2020-08-27 4:23 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-27 4:57 ` Drew Adams
2020-08-27 5:06 ` Emanuel Berg via Users list for the GNU Emacs text editor
[not found] ` <mailman.1413.1598489645.2469.help-gnu-emacs@gnu.org>
2020-08-27 1:53 ` Ihor Radchenko
2020-08-27 2:19 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-27 2:59 ` Drew Adams
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=bdb7f33d-8eeb-433a-8ccb-0e1c1b4c326c@default \
--to=drew.adams@oracle.com \
--cc=help-gnu-emacs@gnu.org \
--cc=moasenwood@zoho.eu \
/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).