branch: elpa/cider commit fd955070f8ab7d8bcc3b373c93da0a75246c2d57 Author: Kato Muso <m...@katomuso.io> Commit: Bozhidar Batsov <bozhi...@batsov.dev>
Remove useless bit of code from cheatsheet --- cider-cheatsheet.el | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cider-cheatsheet.el b/cider-cheatsheet.el index 2bbe104cdb..a7ce40dac2 100644 --- a/cider-cheatsheet.el +++ b/cider-cheatsheet.el @@ -551,10 +551,7 @@ This list is supposed to have the following format: "Expand the symbols in VAR-LIST to fully-qualified var names. The list can hold one or more lists inside - one per each namespace." - (let ((namespaced-vars (seq-mapcat #'cider-cheatsheet--expand-vars - (seq-remove (lambda (list) - (eq (car list) :url)) - var-list)))) + (let ((namespaced-vars (seq-mapcat #'cider-cheatsheet--expand-vars var-list))) (cider-doc-lookup (completing-read "Select var: " namespaced-vars)))) ;;;###autoload