selectrum: drop foo! orderless style dispatch

conflicts with `!` final macros.
also elaborate why we should drop the prescient flag
This commit is contained in:
Itai Y. Efrat 2021-05-20 22:09:41 +03:00
parent 747f1e38b3
commit 308c6798d3
3 changed files with 10 additions and 11 deletions

View file

@ -55,7 +55,6 @@
((string= "!" pattern) `(orderless-literal . ""))
;; Without literal
((string-prefix-p "!" pattern) `(orderless-without-literal . ,(substring pattern 1)))
((string-suffix-p "!" pattern) `(orderless-without-literal . ,(substring pattern 0 -1)))
;; Initialism matching
((string-prefix-p "`" pattern) `(orderless-initialism . ,(substring pattern 1)))
((string-suffix-p "`" pattern) `(orderless-initialism . ,(substring pattern 0 -1)))