dotfiles/emacs-lisp/orderless.org
2023-09-16 19:54:12 +02:00

808 B

Orderless

#

This package provides an orderless completion style that divides the pattern into space-separated components, and matches candidates that match all of the components in any order. Each component can match in any one of several ways: literally, as a regexp, as an initialism, in the flex style, or as multiple word prefixes. By default, regexp and literal matches are enabled.

  (use-package orderless
    :straight t
    :config
    (setq completion-styles '(orderless)))