all repos — archive/dotfiles @ 2bce042f41e444b31a33b973ed24c69aa13ca63f

Superseded by nixfiles

Emacs: appease the byte compiler
Alan Pearce alan@alanpearce.eu
Wed, 03 Jul 2019 18:46:48 +0200
commit

2bce042f41e444b31a33b973ed24c69aa13ca63f

parent

9a57fc18816f2688c9a8f3c59f4a3cbe34350aba

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

jump to
M emacs/.emacs.d/main.elemacs/.emacs.d/main.el
@@ -10,7 +10,7 @@ (setq use-package-always-demand (daemonp)) 
 (use-package exec-path-from-shell
   :if (eq system-type 'darwin)
-  :functions (exec-path-from-shell-initialize)
+  :commands (exec-path-from-shell-initialize)
   :custom ((exec-path-from-shell-arguments nil)
            (exec-path-from-shell-debug t))
   :config (progn
@@ -323,6 +323,7 @@ (use-package all-the-icons)
 
 (use-package company-tabnine
+  :commands (company-tabnine)
   :general ([remap completion-at-point] #'company-tabnine-call-other-backends
             [remap complete-symbol] #'company-tabnine-call-other-backends
             "<C-tab>" #'company-tabnine-call-other-backends)