| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-03-05 | Use window-buffer or current-buffer | Daniel Mendler | |
| 2024-03-05 | orderless-kwd--buffer: Check category=buffer | Daniel Mendler | |
| 2024-03-05 | orderless-kwd-key: Perform lookup in minibuffer-selected-window | Daniel Mendler | |
| 2024-03-05 | Add orderless-kwd.el | Daniel Mendler | |
| 2024-03-05 | Change default syntax for annotation matching to & | Omar Antolin Camarena | |
| The @ sign is used for several other thing like user names on many services which have Emacs clients, and is also used to add words to local dictionaries in Jinx. | |||
| 2024-03-04 | Merge pull request #167 from minad/minor-additions | Omar Antolín Camarena | |
| Two minor additions & bugfixes | |||
| 2024-03-03 | Rename orderless--anchored-quoted-regexp to orderless--literal-prefix-p | Daniel Mendler | |
| Clarify the relation to orderless-literal-prefix. | |||
| 2024-03-03 | Rename orderless-prefix to orderless-literal-prefix and register | Daniel Mendler | |
| Avoid confusion with orderless-prefixes. Registering orderless-literal-prefix with the ^ character has a modest advantage - it makes sure that the prefix optimization sets in. | |||
| 2024-03-03 | Fix orderless--anchored-quoted-regexp: Detect \` instead of ^ | Daniel Mendler | |
| This makes a difference for multi-line candidates. Multi-line candidates are uncommon, but they exist, e.g., for read-from-kill-ring. | |||
| 2024-03-03 | Fix orderless--metadata: Always return non-nil metadata inside minibuffer | Daniel Mendler | |
| Otherwise completion-extra-properties may not be taken into account if the metadata returned by the completion table is nil. | |||
| 2024-03-03 | README: Document orderless-prefix | Daniel Mendler | |
| 2024-03-03 | Extract orderless--metadata helper function | Daniel Mendler | |
| The helper function can be reused for other style modifiers, for example a style matching against the group title returned by the `group-function', which is also specified by the completion metadata. | |||
| 2024-03-03 | Add orderless-prefix matching style | Daniel Mendler | |
| This matching style is useful as a return value of a style dispatcher like orderless-affix-dispatch. It matches literals as a prefix and triggers the prefix filter optimization, see `orderless--anchored-quoted-regexp'. | |||
| 2024-02-29 | Merge pull request #166 from minad/fix-affix-dispatch | Omar Antolín Camarena | |
| orderless-affix-dispatch: Do not error on empty string | |||
| 2024-02-29 | orderless-affix-dispatch: Do not error on empty string | Daniel Mendler | |
| 2024-02-25 | Work around bug in GitHub's org parserfix-github-org | Omar Antolin Camarena | |
| Sadly neither =verbatim= nor ~code~ syntax seems to work in all cases, in particular, neither =,= nor ~,~ display a fixed-width comma. This fixes #155. | |||
| 2024-02-23 | README: Add section for style modifiers | Daniel Mendler | |
| 2024-02-23 | Add orderless--match-p helper | Daniel Mendler | |
| 2024-02-21 | Merge pull request #162 from minad/annotation-matching | Omar Antolín Camarena | |
| Annotation matching | |||
| 2024-02-17 | Break long lines | Daniel Mendler | |
| 2024-02-17 | README: Fix language after renaming of orderless-pattern-compiler | Daniel Mendler | |
| 2024-02-17 | orderless-compile: Expand docstring | Daniel Mendler | |
| 2024-02-17 | Simplify orderless--compile-component | Daniel Mendler | |
| 2024-02-17 | Update commentary, recommend (setq completion-styles '(orderless basic)) | Daniel Mendler | |
| 2024-02-17 | Rename orderless-without to orderless-not | Daniel Mendler | |
| 2024-02-17 | Turn orderless-annotation/without into a "pattern transformer" | Daniel Mendler | |
| orderless-annotation and orderless-without take a PRED and a REGEXP argument and turn it into a new predicate. This looks like a good solution. The complexity is pushed to orderless--compile-component and orderless-without is as simple as possible. | |||
| 2024-02-17 | Alternative 2: Compile component before passing it to orderless-annotation | Daniel Mendler | |
| 2024-02-16 | Alternative approach: Add COMPILE arg to orderless-annotation/without | Daniel Mendler | |
| This way the index and total are preserved even for the recursive matchers. | |||
| 2024-02-16 | Add comment regarding the orderless--component-compiler calls | Daniel Mendler | |
| 2024-02-16 | orderless--dispatch: Explicitly specify the arguments | Daniel Mendler | |
| - The dispatchers have a fixed calling convention. - Explicitly specifying the arguments is both safer and more efficient. | |||
| 2024-02-16 | Use orderless--dispatch in orderless--compile-component | Daniel Mendler | |
| 2024-02-16 | orderless-without: orderless--compile-component can return nil | Daniel Mendler | |
| 2024-02-16 | Update documentation of orderless-style-dispatchers | Daniel Mendler | |
| 2024-02-16 | orderless-affix-dispatch: Ignore single dispatcher character | Daniel Mendler | |
| 2024-02-16 | Rename orderless-pattern-compiler to orderless-compile | Daniel Mendler | |
| orderless-compile returns a predicate and a list of regexps. Keep orderless-pattern-compiler as obsolete function. | |||
| 2024-02-16 | Rename orderless-dispatch to orderless--dispatch | Daniel Mendler | |
| The function is internal. | |||
| 2024-02-16 | Add orderless--component-compiler and use it in orderless-without/annotation | Daniel Mendler | |
| 2024-02-16 | orderless-pattern-compiler: Simplify slightly, remove variable pred | Daniel Mendler | |
| 2024-02-16 | Remove orderless--predicate-or | Omar Antolín Camarena | |
| This simplifies the semantics: all predicates are and-ed together. | |||
| 2024-02-16 | Extend orderless-without-literal comment | Daniel Mendler | |
| 2024-02-15 | orderless-annotation: Also check completion-extra-properties | Daniel Mendler | |
| 2024-02-15 | orderless-annotation, orderless-without-regexp: Check validity | Daniel Mendler | |
| 2024-02-15 | Pattern compiler: Compile to regexps and a predicate function | Daniel Mendler | |
| Compiling to predicate functions makes it possible to implement a wide range of additional matching styles. Two of them are implemented here: - orderless-annotation: Match on candidate annotations with a regexp. - orderless-without-regexp: Exclude candidates matching a regexp (Fix #88). One could imagine creating additional matchers. Many completion category specific ideas had been mentioned in #30. A regexp could match against the content of a buffer or the buffer major mode. Such a matcher would only apply to the buffer completon category. | |||
| 2024-02-15 | Document the new rx format for matching styles | Omar Antolín Camarena | |
| 2024-02-15 | Merge pull request #161 from minad/optimize-predicate | Omar Antolín Camarena | |
| Optimizations and refactoring | |||
| 2024-02-15 | Drop support for Emacs 26.1 because rx does not support (literal ...) | Daniel Mendler | |
| 2024-02-15 | orderless-literal: Use (literal string) instead of regexp-quote | Daniel Mendler | |
| 2024-02-15 | Support rx sepxs as return values of matching style functions | Daniel Mendler | |
| 2024-02-15 | Revert "orderless-pattern-compiler: Create fewer intermediate data structures" | Daniel Mendler | |
| This reverts commit ebd2b841de857c568b547446a27ed9e58e1354eb. | |||
| 2024-02-15 | orderless-try-completion: Use or instead of if | Daniel Mendler | |
