-
-
Notifications
You must be signed in to change notification settings - Fork 653
Closed
Labels
Description
See this:
The offending code is here:
(defun cider-show-apropos (summary results query docs-p)
"Show SUMMARY and RESULTS for QUERY in a pop-up buffer, formatted for DOCS-P."
(with-current-buffer (cider-popup-buffer cider-apropos-buffer t)
(let ((inhibit-read-only t))
(set-syntax-table clojure-mode-syntax-table)
(apropos-mode)
(cider-mode)
(if (boundp 'header-line-format)
(setq-local header-line-format summary)
(insert summary "\n\n"))
(dolist (result results)
(cider-apropos-result result query docs-p))
(goto-char (point-min)))))
Not sure why the syntax table is used here. Enabling cider-mode
also seems redundant.