mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
Fix #619; find parents for extra-modes too
* yasnippet.el (yas--modes-to-activate): Call dfs on yas--extra-modes as well.
This commit is contained in:
parent
e56aa6f7b3
commit
fb6ec67228
@ -741,10 +741,9 @@ and friends."
|
||||
(symbolp neighbour))
|
||||
do (funcall dfs neighbour)))))
|
||||
(if mode
|
||||
(progn (funcall dfs mode)
|
||||
explored)
|
||||
(funcall dfs major-mode)
|
||||
(append yas--extra-modes explored))))
|
||||
(funcall dfs mode)
|
||||
(mapcar dfs (cons major-mode yas--extra-modes)))
|
||||
explored))
|
||||
|
||||
(defvar yas-minor-mode-hook nil
|
||||
"Hook run when `yas-minor-mode' is turned on.")
|
||||
|
Loading…
x
Reference in New Issue
Block a user