[emacs/yasnippet] suppress startup jit loading message
authorAmin Bandali <bandali@gnu.org>
Sat, 12 Jan 2019 17:03:26 +0000 (12:03 -0500)
committerAmin Bandali <bandali@gnu.org>
Sat, 12 Jan 2019 17:05:25 +0000 (12:05 -0500)
init.org

index 9ae1276..46c5d82 100644 (file)
--- a/init.org
+++ b/init.org
@@ -2209,8 +2209,11 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]].
 (use-package yasnippet
   :defer 3
   :config
+  (defconst yas-verbosity-cur yas-verbosity)
+  (setq yas-verbosity 2)
   (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets")
   (yas-reload-all)
+  (setq yas-verbosity yas-verbosity-cur)
   :hook
   (text-mode . yas-minor-mode))
 #+end_src