mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
Closes #281: jit-load in reverse order to maintain coherence with yas-snippet-dirs
This commit is contained in:
parent
145448b815
commit
926876b1a2
@ -247,11 +247,13 @@ TODO: correct this bug!"
|
||||
'((".emacs.d/snippets"
|
||||
("c-mode"
|
||||
(".yas-parents" . "cc-mode")
|
||||
("printf" . "printf($1);"))
|
||||
("printf" . "printf($1);")) ;; notice the overriding for issue #281
|
||||
("emacs-lisp-mode" ("ert-deftest" . "(ert-deftest ${1:name} () $0)"))
|
||||
("lisp-interaction-mode" (".yas-parents" . "emacs-lisp-mode")))
|
||||
("library/snippets"
|
||||
("c-mode" (".yas-parents" . "c++-mode"))
|
||||
("c-mode"
|
||||
(".yas-parents" . "c++-mode")
|
||||
("printf" . "printf"))
|
||||
("cc-mode" ("def" . "# define"))
|
||||
("emacs-lisp-mode" ("dolist" . "(dolist)"))
|
||||
("lisp-interaction-mode" ("sc" . "brother from another mother"))))
|
||||
|
@ -1812,6 +1812,7 @@ loading."
|
||||
(when yas-minor-mode
|
||||
(dolist (mode (yas--modes-to-activate))
|
||||
(let ((forms (gethash mode yas--scheduled-jit-loads)))
|
||||
;; must reverse to maintain coherence with `yas-snippet-dirs'
|
||||
(dolist (form forms)
|
||||
(yas--message 3 "Loading for `%s', just-in-time: %s!" mode form)
|
||||
(eval form))
|
||||
|
Loading…
x
Reference in New Issue
Block a user