mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
22 lines
808 B
Org Mode
22 lines
808 B
Org Mode
|
:PROPERTIES:
|
||
|
:ID: 6bbcf471-95ee-4cd5-abee-d412a1eba068
|
||
|
:ROAM_REFS: https://github.com/oantolin/orderless
|
||
|
:END:
|
||
|
#+title: Orderless
|
||
|
#+filetags: emacs-load
|
||
|
|
||
|
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
||
|
#
|
||
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
||
|
|
||
|
#+BEGIN_QUOTE
|
||
|
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.
|
||
|
#+END_QUOTE
|
||
|
|
||
|
#+BEGIN_SRC emacs-lisp
|
||
|
(use-package orderless
|
||
|
:straight t
|
||
|
:config
|
||
|
(setq completion-styles '(orderless)))
|
||
|
#+END_SRC
|