Variable: orderless-component-separator
orderless-component-separator is a customizable variable defined in
orderless.el.
Value
orderless-escapable-split
Documentation
Component separators for orderless completion.
This can either be a string, which is passed to split-string,
or a function of a single string argument.
Source Code
;; Defined in ~/.emacs.d/elpa/orderless-20260519.1029/orderless.el
(defcustom orderless-component-separator #'orderless-escapable-split
"Component separators for orderless completion.
This can either be a string, which is passed to `split-string',
or a function of a single string argument."
:type `(choice (const :tag "Spaces" " +")
(const :tag "Spaces, hyphen or slash" " +\\|[-/]")
(const :tag "Escapable space"
,#'orderless-escapable-split)
(const :tag "Escapable hyphen"
(,#'orderless-escapable-split ?-))
(const :tag "Quotable spaces" ,#'split-string-and-unquote)
(regexp :tag "Custom regexp")
(function :tag "Custom function")
(sexp :tag "Function plus trailing arguments")))