vote up 2 vote down star

I am trying to get the yasnippet and pabbrev packages working together with emacs, but I cannot seem to get any love. How can I get them to play nicely together?

The crux of the problem is that pabbrev and yasnippet are binding to the tab keys. Both packages seem to do this fallback when a match isn't found, but they don't fall back properly.

I am currently using Emacs W32 (the last emacs 22 release). yasnippet is byte compiled, but pabbrev is not.

Edit: Thus far neither tabkey2 nor hippie expand work out of the box, which is why I have yet to mark either solution as a correct answer. I'm hacking away at tabkey2 to make it work though.

flag
More data needed. Are you byte-compiling? – jfm3 Sep 30 '08 at 5:40
How are they "not playing nicely" can you be more concrete? – jfm3 Sep 30 '08 at 5:42
Hahha. Me = lame. Question is updated. – Jonathan Arkell Sep 30 '08 at 5:44
did you get it working? Can you post what you did? – jacob May 5 at 18:56

2 Answers

vote up 1 vote down check

Have a look at tabkey2.el. It looks like it addresses the problem you're having.

link|flag
vote up 2 vote down

I use hippie expand to manage conflicting tab expansion programs.

Here the code in my .emacs file(s) that handles several different tab expansions. It will go top down through this list trying to find a match for the current tab expansion.


(require 'hippie-exp)

(setq hippie-expand-try-functions-list
      '(yas/hippie-try-expand
        try-expand-dabbrev
        try-expand-dabbrev-all-buffers
        try-expand-dabbrev-from-kill
        try-complete-file-name
        try-complete-lisp-symbol))

NOTE: Hippie exand will probably not work with pabbrev, because pabbrev is an emacs minor mode.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.