You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cider-completion.el
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -211,7 +211,10 @@ performed by `cider-annotate-completion-function'."
211
211
;;
212
212
;; This api is better described in the section
213
213
;; '21.6.7 Programmed Completion' of the elisp manual.
214
-
(cond ((eq action 'metadata) `(metadata (category . cider))) ;; defines a completion category named 'cider, used later in our `completion-category-overrides` logic.
214
+
(cond ((eq action 'metadata)
215
+
`(metadata
216
+
(category . cider) ;; defines a completion category named 'cider, used later in our `completion-category-overrides` logic.
217
+
(display-sort-function . identity))) ;; don't override sorting done by backend
0 commit comments