From: Andreas Politz <politza@fh-trier.de>
To: help-gnu-emacs@gnu.org
Subject: Re: execute after char/string
Date: Thu, 27 Nov 2008 23:15:59 +0100 [thread overview]
Message-ID: <1227824227.802004@arno.fh-trier.de> (raw)
In-Reply-To: <barmar-E5CA98.15312227112008@mara100-84.onlink.net>
Barry Margolin wrote:
> In article
> <9dddf442-089c-495a-af1c-072cc80ad2b0@n33g2000pri.googlegroups.com>,
> Steve Chow <msweaksauce@hotmail.com> wrote:
>
>> is there a way I can execute a function/macro after I've inserted a
>> character or string? In this case I'd like execute a function after
>> typing . or -> in c-mode. I tried using global-set-key but then of
>> course it won't let me enter those characters into the buffer.
>
> See after-change-functions.
>
A spicedup self-insert-command is much simpler I think.
(defun super-dot-minus-arrow (&optional arg)
(interactive "p")
(self-insert-command arg)
(do-some-more-stuff-when-apropriate))
(define-key your-map (kbd ".") 'super-dot-minus-arrow)
-ap
next prev parent reply other threads:[~2008-11-27 22:15 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-27 20:19 execute after char/string Steve Chow
2008-11-27 20:31 ` Barry Margolin
2008-11-27 22:15 ` Andreas Politz [this message]
2008-11-28 1:35 ` Xah Lee
2008-11-28 2:14 ` Chetan
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=1227824227.802004@arno.fh-trier.de \
--to=politza@fh-trier.de \
--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.