all repos — nixfiles @ 26ab88d706e7de3a10310ab0b50cea62b8b0f23a

System and user configuration, managed by nix and home-manager

Emacs: Fix initialisation of tern-mode
Alan Pearce alan@alanpearce.eu
Fri, 12 May 2017 14:47:56 +0200
commit

26ab88d706e7de3a10310ab0b50cea62b8b0f23a

parent

d072b85a000e9f81ff6685fb39422825ceb218c8

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M emacs/.emacs.d/init.orgemacs/.emacs.d/init.org
@@ -2080,8 +2080,10 @@ :if (executable-find "tern")   :defer 5
   :config (progn
             (setq tern-command (list (executable-find "tern")))
-            (add-hook 'js2-mode-hook #'tern-mode-enable)
-            (add-hook 'web-mode-hook #'tern-mode-enable)))
+            (create-hook-helper tern-mode-on ()
+              :hooks (web-mode-hook
+                      js2-mode-hook)
+              (tern-mode +1))))
 
 (with-eval-after-load 'tern
   (use-package company-tern))