Ian Barton <[EMAIL PROTECTED]> writes:

> ;; Make Yasnippet play nicely with org mode.
> (add-hook 'org-mode-hook
> '(lambda ()
> (make-variable-buffer-local 'yas/trigger-key)
> (setq yas/trigger-key [tab])))
>

I think maybe your lambda should not be quoted, try

;; Make Yasnippet play nicely with org mode.
(add-hook 'org-mode-hook
          (lambda ()
            (make-variable-buffer-local 'yas/trigger-key)
            (setq yas/trigger-key [tab])))

-- Eric


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to