From: Roberto Huelga <rhuelga@multinterior.com>
Subject: Re: Abbrev , as ,_
Date: Thu, 30 Oct 2003 15:46:56 +0100 [thread overview]
Message-ID: <E8D5CF81-0AE7-11D8-AB89-00039368DF30@multinterior.com> (raw)
El Jueves, 30 octubre, 2003, a las 05:27 AM, Dan Anderson escribió:
> Out of curiosity, wouldn't that mean that typing in:
>
> foo = "1,2,3,4,5";
>
> Would create:
>
> foo = "1, 2, 3, 4, 5";
>
> And cause problems? Granted many times commas and spaces go hand in
> hand, but in scenarios like a CSV list it would be horribly wrong.
>
> -Dan
Here is the solution, it don't expand in comments, strings and others
contexts.
(define-key c-mode-map ","
(lambda ()
(interactive)
(let* ((face (get-text-property (point) 'face )))
(if
(or (equal face 'font-lock-comment-face)
(equal face 'font-lock-string-face)
(equal face 'font-lock-warning-face)
(equal face 'font-lock-doc-face))
(insert ",")
(insert ", ")
))))
next reply other threads:[~2003-10-30 14:46 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-10-30 14:46 Roberto Huelga [this message]
[not found] <mailman.2813.1067525348.21628.help-gnu-emacs@gnu.org>
2003-10-30 17:06 ` Abbrev , as ,_ Stefan Monnier
-- strict thread matches above, loose matches on Subject: below --
2003-10-30 0:27 Jiri Pejchal
2003-10-30 1:27 ` Jesper Harder
2003-10-30 4:27 ` Dan Anderson
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=E8D5CF81-0AE7-11D8-AB89-00039368DF30@multinterior.com \
--to=rhuelga@multinterior.com \
/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).