From: Amin Bandali Date: Sat, 12 Jan 2019 17:03:26 +0000 (-0500) Subject: [emacs/yasnippet] suppress startup jit loading message X-Git-Url: https://git.shemshak.org/~bandali/configs/commitdiff_plain/3c23b5ea17c0ee54baa7731f1f1b889be86f8abb [emacs/yasnippet] suppress startup jit loading message --- diff --git a/init.org b/init.org index 9ae1276..46c5d82 100644 --- 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