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
;; When the 'action is 'metadata, this lambda returns metadata about this
190
-
;; capf, when action is (boundaries . suffix), it returns nil. With every
191
-
;; other value of 'action (t, nil, or lambda), 'action is forwarded to
192
-
;; (complete-with-action), together with (cider-complete), prefix and pred.
193
-
;; And that function performs the completion based on those arguments.
194
-
;;
195
-
;; This api is better described in the section
196
-
;; '21.6.7 Programmed Completion' of the elisp manual.
197
-
(cond ((eq action 'metadata) `(metadata (category . cider))) ;; defines a completion category named 'cider, used later in our `completion-category-overrides` logic.
;; When the 'action is 'metadata, this lambda returns metadata about this
198
+
;; capf, when action is (boundaries . suffix), it returns nil. With every
199
+
;; other value of 'action (t, nil, or lambda), 'action is forwarded to
200
+
;; (complete-with-action), together with (cider-complete), prefix and pred.
201
+
;; And that function performs the completion based on those arguments.
202
+
;;
203
+
;; This api is better described in the section
204
+
;; '21.6.7 Programmed Completion' of the elisp manual.
205
+
(cond ((eq action 'metadata) `(metadata (category . cider))) ;; defines a completion category named 'cider, used later in our `completion-category-overrides` logic.
0 commit comments