- 03 Sep, 2022 2 commits
-
-
Aymeric Agon-Rambosson authored
-
Aymeric Agon-Rambosson authored
-
- 12 Jan, 2022 1 commit
-
-
Omar Antolín authored
-
- 11 Jan, 2022 4 commits
-
-
Omar AntolÃn Camarena authored
-
Omar AntolÃn Camarena authored
-
Omar Antolín Camarena authored
Remove strict initialism code by @noctuid
-
Daniel Mendler authored
The function `orderless--separated-by` has also been added by @noctuid. However with the removal of the strict initialism code, the contributions by @noctuid are pushed below the 15 lines limit. The function `orderless--separated-by` has only 11 lines. (cl-defun orderless--separated-by (sep rxs &optional (before "") (after "")) "Return a regexp to match the rx-regexps RXS with SEP in between. If BEFORE is specified, add it to the beginning of the rx sequence. If AFTER is specified, add it to the end of the rx sequence." (rx-to-string `(seq ,before ,@(cl-loop for (sexp . more) on rxs collect `(group ,sexp) when more collect `,sep) ,after)))
-
- 30 Nov, 2021 1 commit
-
-
Omar Antolín authored
-
- 29 Nov, 2021 2 commits
-
-
Omar Antolín authored
-
Omar Antolín authored
-
- 25 Nov, 2021 4 commits
-
-
Omar Antolín Camarena authored
Fix orderless-try-completion for hash tables and alists
-
Daniel Mendler authored
-
Daniel Mendler authored
-
Omar Antolín Camarena authored
Optimize orderless-try-completion
-
- 24 Nov, 2021 1 commit
-
-
Daniel Mendler authored
-
- 21 Nov, 2021 1 commit
-
-
Omar Antolín authored
-
- 12 Sep, 2021 1 commit
-
-
Omar Antolín authored
-
- 09 Sep, 2021 1 commit
-
-
Omar Antolín authored
If orderless finds that some component of the pattern compiles to a regexp of the form ^literal it will now take the first such regexp and add the literal to the prefix which which it calls all-completions. That's a slight lie: it actually looks for regexps of the form \(?:^literal\) since that is what the pattern compiler actually produces. With this change people can now add a style dispatcher that adds a ^ to the first component to use with certain completion-at-point functions that can really take advantage of knowing a prefix to return fewer completions. Some even (incorrectly) refuse to return all possible completions for an empty string! See the discussion in #79 and the issues linked therein.
-
- 12 Aug, 2021 2 commits
-
-
Omar Antolín Camarena authored
orderless-escapable-split-on-space: Fix escaping mistake
-
Daniel Mendler authored
My patch 268e56d4 was not correct.
-
- 11 Aug, 2021 1 commit
-
-
Omar Antolín Camarena authored
Fix orderless-escapable-split-on-space
-
- 10 Aug, 2021 1 commit
-
-
Daniel Mendler authored
* Currently escaped backslash also escapes space * Allocate match-data only once
-
- 06 Aug, 2021 1 commit
-
-
Omar Antolín authored
In the common case where people search for a string with no special regexp characters and are using both the orderless-regexp and orderless-literal matching styles, a regexp containing blah\|blah was produced. This takes care of that case.
-
- 21 Jul, 2021 2 commits
-
-
Omar Antolín Camarena authored
Use minibuffer customization group
-
Daniel Mendler authored
The completion customization group is defined by completion.el, which is unrelated to minibuffer completion.
-
- 13 Jun, 2021 2 commits
-
-
Omar AntolÃn Camarena authored
-
Omar AntolÃn Camarena authored
-
- 10 Jun, 2021 1 commit
-
-
Omar AntolÃn Camarena authored
I think it's probably less surprising to use the immutable [:alpha:] rather than [:word:] which is up to the current syntax table.
-
- 03 Jun, 2021 2 commits
-
-
Omar Antolín Camarena authored
Use add-face-text-property
-
Daniel Mendler authored
-
- 18 May, 2021 2 commits
-
-
Omar Antolín Camarena authored
README: Add variable category to orderless+initialism sample
-
Daniel Mendler authored
Marginalia provides the command, symbol and variable categories.
-
- 17 May, 2021 1 commit
-
-
Omar Antolín authored
-
- 16 May, 2021 2 commits
-
-
Omar Antolín authored
-
Omar Antolín authored
-
- 07 May, 2021 4 commits
-
-
Omar Antolín Camarena authored
Only enable regexp and literal matching styles by default
-
Daniel Mendler authored
* Avoid performance issues with initialism when filtering long candidates (#39) * README: Update default matching styles * README: Document `orderless-define-completion-style` * README: Update `without-if-bang` such that it ignores "!"
-
Omar Antolín Camarena authored
fix typo
-
Daniel Mendler authored
-
- 07 Apr, 2021 1 commit
-
-
Omar Antolín Camarena authored
Remove pattern compiler variable
-