File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -256,14 +256,6 @@ in the buffer."
256
256
257
257
; ; Fuzzy completion for company-mode
258
258
259
- (defun cider-completion-try-completion (string collection pred _ )
260
- " Return longest common substring of all completions of STRING in COLLECTION,
261
- also pass PRED to `try-completion' .
262
-
263
- This function is only needed to be a correct citizen in
264
- `completion-styles-alist' ."
265
- (try-completion string collection pred))
266
-
267
259
(defun cider-company-unfiltered-candidates (string &rest _ )
268
260
" Return CIDER completion candidates for STRING as is, unfiltered."
269
261
(cider-complete string))
@@ -276,7 +268,8 @@ This function is only needed to be a correct citizen in
276
268
; ; which introduced `cider-company-enable-fuzzy-completion' )
277
269
(add-to-list 'completion-styles-alist
278
270
'(cider
279
- cider-completion-try-completion
271
+ ; ; Use `ignore' in place of "try-competion function".
272
+ ignore
280
273
cider-company-unfiltered-candidates
281
274
" CIDER backend-driven completion style." ))
282
275
You can’t perform that action at this time.
0 commit comments