We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d430ab3 commit 4949614Copy full SHA for 4949614
cider-completion.el
@@ -297,6 +297,8 @@ Only affects the `cider' completion category.`"
297
(unless found-styles
298
(setq found-styles '(styles basic)))
299
(unless (member 'flex found-styles)
300
+ ;; This expression makes sure that 'flex style has a priority over other
301
+ ;; styles, see https://github.com/clojure-emacs/cider/pull/3696.
302
(setq found-styles (apply #'list 'styles 'flex (cdr found-styles))))
303
(add-to-list 'completion-category-overrides (apply #'list 'cider found-styles (when found-cycle
304
(list found-cycle))))))
0 commit comments