From 06f1e1be6ff5ef7e2c8c05dc1954bcedcbb6eb0b Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Mon, 18 Jul 2022 13:44:25 -0500 Subject: [PATCH] Revert "Change: (org-ql-find) Add workaround for Ivy support" This reverts commit a02ed48ac81583300747e91c0a964abbb590ef43. See . --- org-ql-find.el | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/org-ql-find.el b/org-ql-find.el index 8630f72..4f8e981 100644 --- a/org-ql-find.el +++ b/org-ql-find.el @@ -83,12 +83,6 @@ For an experience like `org-rifle', use a newline." (defface org-ql-find-snippet '((t (:inherit font-lock-comment-face))) "Snippets.") -;;;; Variables - -;; TODO: When Ivy no longer requires this workaround, remove it. See -;; . -(defvar ivy-completing-read-dynamic-collection) - ;;;; Functions ;;;###autoload @@ -215,10 +209,6 @@ single predicate)." (mapc #'org-ql--ensure-buffer buffers-files) (let* ((completion-styles '(org-ql-find)) (completion-styles-alist (list (list 'org-ql-find #'try #'all "Org QL Find"))) - ;; TODO: When Ivy no longer requires this workaround, - ;; remove it and the corresponding defvar. See - ;; . - (ivy-completing-read-dynamic-collection t) (selected (completing-read prompt #'collection nil)) (marker (gethash selected table))) (with-current-buffer (marker-buffer marker)