From f7bb731b2f1fb1d9f9c5e432862616be32789db1 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 22 Jul 2017 19:16:22 +0200 Subject: [PATCH] =?UTF-8?q?[Helm]=20Fixing=20missing=20require=20for=20?= =?UTF-8?q?=E2=80=98db/helm-shortcuts=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not quite sure whether it is necessary, but it seems to help. A proper understanding would be more reassuring, though. --- site-lisp/db-utils.el | 1 + 1 file changed, 1 insertion(+) diff --git a/site-lisp/db-utils.el b/site-lisp/db-utils.el index eae7f5b..79dbb4e 100644 --- a/site-lisp/db-utils.el +++ b/site-lisp/db-utils.el @@ -295,6 +295,7 @@ If FILE is not given, prompt for one." (defun db/helm-shortcuts () "Open helm completion on common locations." (interactive) + (require 'helm-files) ; seems to be necessary (helm :sources '(db/helm-frequently-used-features db/helm-frequently-visited-locations)))