all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Suvayu Ali <fatkasuvayu+linux@gmail.com>
To: Emacs mailing list <help-gnu-emacs@gnu.org>
Subject: manipulating abbreviation mode hooks
Date: Sun, 09 May 2010 18:38:47 -0700	[thread overview]
Message-ID: <4BE763A7.20100@gmail.com> (raw)

Hi everyone,

I'm not sure I'll be able to explain what I am trying to do but I'll 
give it a shot nonetheless. I wrote some abbreviations for the c++ mode 
(e.g. `for' expands to the entire for loop construct, if..else, ...). 
However when ever I use any of those abbrevs within a comment, it still 
expands to the loop.

 From the info node, "(elisp)Top:: > *Note Abbrevs:: > Abbrev Expansion" 
I got the hint to use `abbrev-expand-functions' hook. To start out 
simple, I tried to implement this for shell-script mode abbrev table, 
and the text-mode abbrev table.

So in a scratch buffer I tried this,

> (defun foo ()
>   (interactive)
>   (if (not (save-excursion
> 	     (and
> 	      (forward-line 0)
> 	      (eq (char-after) ?#))))
>       (print "src")
>     (let ((local-abbrev-table text-mode-abbrev-table))
>       (print "comments")
>       (funcall 'expand-abbrev))
>     ))

This worked as expected, my text mode abbreviations were expanded on a 
line starting with #, but didn't expand otherwise.

But when I put the following in my ~/.emacs, I get no such behaviour.

> (defun my-shell-script-mode-abbrev-expand-function ()
>   (if (not (save-excursion
> 	     (forward-line 0)
> 	     (eq (char-after) ?#)))
>       (funcall 'expand-abbrev)
>     (let ((local-abbrev-table text-mode-abbrev-table))
>       (funcall 'expand-abbrev))))
>
> (add-hook 'shell-script-mode-hook
> 	  '(lambda ()
> 	     (add-hook 'abbrev-expand-functions
> 		       'my-shell-script-mode-abbrev-expand-function
> 		       nil t)))


Once this is solved, my second question is how do I implement this for 
c++-mode? I can't figure out how to match to `//' or a `/* ... */' 
block. I'm a newbie in lisp, so a little guidance would be very 
appreciated. :)

TIA
-- 
Suvayu

Open source is the future. It sets us free.




             reply	other threads:[~2010-05-10  1:38 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-10  1:38 Suvayu Ali [this message]
2010-05-16 12:29 ` manipulating abbreviation mode hooks Suvayu Ali
     [not found] <mailman.16.1273455544.17813.help-gnu-emacs@gnu.org>
2010-05-10  9:34 ` Andreas Politz

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=4BE763A7.20100@gmail.com \
    --to=fatkasuvayu+linux@gmail.com \
    --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.