Re: [Orgmode] YASnippet fix not working

2009-08-02 Thread Kyle Sexton
At Sun, 02 Aug 2009 23:59:59 +0100, Eric S Fraga wrote: > > > Two things: > > 1. make sure you initialise yasnippet *before* org-mode. > > 2. my configuration is: > > (add-hook 'org-mode-hook > '(lambda () > (make-variable-buffer-local 'yas/trigger-key) > (

Re: [Orgmode] YASnippet fix not working

2009-08-02 Thread Eric S Fraga
At Sun, 02 Aug 2009 14:21:58 -0500, Kyle Sexton wrote: > > I'm trying to get YASnippet working with org-mode, but the fix I've > found online doesn't seem to be working. > > --snip-- > (add-hook 'org-mode-hook > (lambda () > (org-set-local 'yas/trigger-key [tab]) >

Re: [Orgmode] YASnippet fix not working

2009-08-02 Thread Eric Schulte
Kyle Sexton writes: > I'm trying to get YASnippet working with org-mode, but the fix I've > found online doesn't seem to be working. > > --snip-- > (add-hook 'org-mode-hook > (lambda () > (org-set-local 'yas/trigger-key [tab]) > (define-key yas/keymap [tab] 'yas/

[Orgmode] YASnippet fix not working

2009-08-02 Thread Kyle Sexton
I'm trying to get YASnippet working with org-mode, but the fix I've found online doesn't seem to be working. --snip-- (add-hook 'org-mode-hook (lambda () (org-set-local 'yas/trigger-key [tab]) (define-key yas/keymap [tab] 'yas/next-field-group))) --snip-- I've ad