emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Re: [Babel] Macro for begin_src?


From: Štěpán Němec
Subject: [Orgmode] Re: [Babel] Macro for begin_src?
Date: Sat, 17 Apr 2010 13:03:11 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.91 (gnu/linux)

Dan Davison <address@hidden> writes:
>> Thanks!  I'm having trouble triggering the yasnippets using the TAB key, so
> I'm
>> just using the GUI menu.
>>
>> Do you literally type "src" (no quotes), then press Tab?
>
> Yeah, but there's some magic code needed, which is also on Bernt's
> page.
>
>   (add-hook 'org-mode-hook
>             (lambda ()
>               ;; yasnippet
>               (make-variable-buffer-local 'yas/trigger-key)
>               (setq yas/trigger-key [tab])
>               (define-key yas/keymap [tab] 'yas/next-field-group)))

I'm guessing what you really want there is

(set (make-local-variable 'yas/trigger-key) [tab])

instead of

>               (make-variable-buffer-local 'yas/trigger-key)
>               (setq yas/trigger-key [tab])

The difference is that in the latter case you're making
`yas/trigger-key' be automatically buffer-local for *all* buffers, not
only in the buffer you're setting it (see e.g. the docstring of
`make-variable-buffer-local').


  Štěpán




reply via email to

[Prev in Thread] Current Thread [Next in Thread]