From: Ph. Ivaldi <piv_pasde@pub_tele2.fr>
To: help-gnu-emacs@gnu.org
Subject: Re: Add functions to C-mode?
Date: Sat, 19 Apr 2008 15:01:54 +0200 [thread overview]
Message-ID: <87d4omov5p.fsf@tele2.fr> (raw)
In-Reply-To: 4809d165$0$90270$14726298@news.sunsite.dk
saneman wrote :
> I would like to add/change the comment/uncomment function in the
> C-mode for emacs.
> Currently it only works when a piece of text is selected and then /*
> */ is inserted.
> I would like to change the function to just insert // even though some
> text might not be selected.
I use this code but one can certainly do better:
8<------8<------8<------8<------8<------8<------8<------8<------8<------
(defun pi-?comment ()
(interactive)
(save-excursion
(if mark-active
(let ((br (region-beginning))
(be (region-end)))
(comment-or-uncomment-region br be)
(indent-region br be))
(let ((br (progn (back-to-indentation) (point)))
(be (progn (end-of-line) (point))))
(comment-or-uncomment-region br be)
(indent-according-to-mode)))))
(global-set-key (kbd "C-%") 'pi-?comment)
8<------8<------8<------8<------8<------8<------8<------8<------8<------
--
Philippe Ivaldi.
http://piprim.tuxfamily.org/
next prev parent reply other threads:[~2008-04-19 13:01 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-19 11:04 Add functions to C-mode? saneman
2008-04-19 13:01 ` Ph. Ivaldi [this message]
2008-04-19 17:16 ` David Hansen
[not found] ` <mailman.10583.1208625909.18990.help-gnu-emacs@gnu.org>
2008-04-19 21:08 ` Jason Rumney
2008-04-20 7:17 ` David Hansen
2008-04-20 12:26 ` Eli Zaretskii
2008-04-20 12:42 ` David Hansen
2008-04-20 13:51 ` Eli Zaretskii
2008-04-22 9:36 ` David Hansen
[not found] ` <mailman.10609.1208696003.18990.help-gnu-emacs@gnu.org>
2008-04-20 13:28 ` Richard G Riley
2008-04-22 9:39 ` David Hansen
2008-04-20 12:01 ` Alan Mackenzie
[not found] ` <mailman.10605.1208691810.18990.help-gnu-emacs@gnu.org>
2008-04-21 7:36 ` saneman
2008-04-21 10:51 ` Alan Mackenzie
[not found] ` <mailman.10650.1208777518.18990.help-gnu-emacs@gnu.org>
2008-04-21 11:49 ` Richard G Riley
2008-04-21 20:35 ` Alan Mackenzie
[not found] ` <mailman.10668.1208809134.18990.help-gnu-emacs@gnu.org>
2008-04-22 4:00 ` Richard G Riley
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=87d4omov5p.fsf@tele2.fr \
--to=piv_pasde@pub_tele2.fr \
--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.