summaryrefslogtreecommitdiff
path: root/orderless.el
diff options
context:
space:
mode:
authorOmar Antolín <omar.antolin@gmail.com>2020-05-02 14:39:46 -0500
committerOmar Antolín <omar.antolin@gmail.com>2020-05-02 14:41:45 -0500
commitd42e41c8cb894f511d5447eadea753f5aa57b8b3 (patch)
tree24e88488563a8748a90fdaab82c111e7b01eab80 /orderless.el
parent12ea1f2947ae716b5a7dd8205eed2880b666634c (diff)
Allow separator inside double quotes
Diffstat (limited to 'orderless.el')
-rw-r--r--orderless.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/orderless.el b/orderless.el
index 519e13a..b4e1f63 100644
--- a/orderless.el
+++ b/orderless.el
@@ -298,7 +298,7 @@ The COMPONENT is split at word endings, and each piece must match
at a word boundary in the candidate. This is similar to the
`partial-completion' completion style."
(orderless--separated-by '(zero-or-more nonl)
- (cl-loop for prefix in (split-string component "\\>" t)
+ (cl-loop for prefix in (split-string-and-unquote component "\\>")
collect `(seq word-boundary ,prefix))))
;;; Highlighting matches