add-yas-minor-mode!: fix void-variable: mode error
This commit is contained in:
parent
71f0b3ba10
commit
6ce30d0116
1 changed files with 4 additions and 7 deletions
|
@ -4,13 +4,10 @@
|
|||
(defun set-yas-minor-mode! (modes)
|
||||
"Register minor MODES (one mode symbol or a list of them) with yasnippet so it
|
||||
can have its own snippets category, if the folder exists."
|
||||
(let ((fn (intern (format "+snippets|register-%s" mode))))
|
||||
(fset fn (lambda ()
|
||||
(make-local-variable 'yas--extra-modes)
|
||||
(dolist (mode (doom-enlist modes))
|
||||
(add-to-list 'yas--extra-modes mode nil #'eq))
|
||||
(yas--load-pending-jits)))
|
||||
(add-hook (intern (format "%s-hook" mode)) fn)))
|
||||
(let ((fn (intern (format "+snippets|register-%s" mode))))
|
||||
(fset fn (lambda () (yas-activate-extra-mode mode)))
|
||||
(add-hook (intern (format "%s-hook" mode)) fn))))
|
||||
|
||||
;;;###autoload
|
||||
(def-setting! :yas-minor-mode (mode)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue