Document the solution for the YASnippet/org-mode problem
This commit is contained in:
parent
5e39f24715
commit
1371cad310
13
doc/org.texi
13
doc/org.texi
|
@ -10354,6 +10354,19 @@ Yes, these are unfortunately more difficult to remember. If you want
|
||||||
to have other replacement keys, look at the variable
|
to have other replacement keys, look at the variable
|
||||||
@code{org-disputed-keys}.
|
@code{org-disputed-keys}.
|
||||||
|
|
||||||
|
@item @file{yasnippet.el}
|
||||||
|
@cindex @file{yasnippet.el}
|
||||||
|
The way Org-mode binds the TAB key (binding to @code{[tab]} instead of
|
||||||
|
@code{"\t"}) overrules yasnippets' access to this key. The following code
|
||||||
|
fixed this problem:
|
||||||
|
|
||||||
|
@lisp
|
||||||
|
(add-hook 'org-mode-hook
|
||||||
|
(lambda ()
|
||||||
|
(org-set-local 'yas/trigger-key [tab])
|
||||||
|
(define-key yas/keymap [tab] 'yas/next-field-group)))
|
||||||
|
@end lisp
|
||||||
|
|
||||||
@item @file{windmove.el} by Hovav Shacham
|
@item @file{windmove.el} by Hovav Shacham
|
||||||
@cindex @file{windmove.el}
|
@cindex @file{windmove.el}
|
||||||
Also this package uses the @kbd{S-<cursor>} keys, so everything written
|
Also this package uses the @kbd{S-<cursor>} keys, so everything written
|
||||||
|
|
Loading…
Reference in New Issue