mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
Fix issue 182
This commit is contained in:
parent
51e99ef3a0
commit
a20a2e4232
@ -836,10 +836,9 @@ behaviour. Can also be a function of zero arguments.")
|
||||
Do this unless `yas/dont-activate' is t "
|
||||
(interactive)
|
||||
(unless (or (minibufferp)
|
||||
(and (functionp yas/dont-activate)
|
||||
(funcall yas/dont-activate))
|
||||
(and (boundp yas/dont-activate)
|
||||
yas/dont-activate))
|
||||
(if (functionp yas/dont-activate)
|
||||
(funcall yas/dont-activate)
|
||||
yas/dont-activate))
|
||||
;; Load all snippets definitions unless we still don't have a
|
||||
;; root-directory or some snippets have already been loaded.
|
||||
;;
|
||||
|
Loading…
x
Reference in New Issue
Block a user