From 170276bdeb31f93181c4f623231a8fcd45bfcfd8 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Thu, 30 Jan 2020 23:28:36 -0600 Subject: [PATCH] Tidy: (helm-source-org-ql-views) Rename to helm-org-ql-views-source package-lint complains about the symbol prefix. I guess following the helm-source-* convention isn't a big deal. --- helm-org-ql.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm-org-ql.el b/helm-org-ql.el index a47ecce..70244fa 100644 --- a/helm-org-ql.el +++ b/helm-org-ql.el @@ -55,7 +55,7 @@ "Keymap for `helm-org-ql' sessions. Based on `helm-map'.") -(defvar helm-source-org-ql-views +(defvar helm-org-ql-views-source (helm-make-source "Org QL Views" 'helm-source-sync :candidates (lambda () (->> org-ql-views @@ -170,7 +170,7 @@ Is transformed into this query: (defun helm-org-ql-views () "Show an `org-ql' view selected with Helm." (interactive) - (helm :sources helm-source-org-ql-views)) + (helm :sources helm-org-ql-views-source)) ;;;; Functions