File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 88
99### Bugs fixed
1010
11+ - [ #3696 ] ( https://github.com/clojure-emacs/cider/pull/3696 ) : Don't eagerly complete a candidate if there are other candidates matching ` flex ` style.
12+
1113## 1.14.0 (2024-05-30)
1214
1315### New features
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ Only affects the `cider' completion category.`"
297297 (unless found-styles
298298 (setq found-styles '(styles basic)))
299299 (unless (member 'flex found-styles)
300- (setq found-styles (append found- styles '( flex))))
300+ (setq found-styles (apply # 'list ' styles 'flex ( cdr found-styles ))))
301301 (add-to-list 'completion-category-overrides (apply #'list 'cider found-styles (when found-cycle
302302 (list found-cycle))))))
303303
Original file line number Diff line number Diff line change 3737 (unwind-protect
3838 (progn
3939 (it " adds `flex' and `basic' as a fallback"
40- (let ((expected-category-overrides '((cider (styles basic flex)))))
40+ (let ((expected-category-overrides '((cider (styles flex basic )))))
4141 (cider-enable-flex-completion)
4242 (expect (member 'flex (assq 'styles (assq 'cider completion-category-overrides)))
4343 :to-be-truthy )
You can’t perform that action at this time.
0 commit comments