| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-01-27 | Set manual authorHEADmaster | Daniel Mendler | |
| 2026-01-17 | Update README | Daniel Mendler | |
| 2026-01-17 | Update README | Daniel Mendler | |
| Stop linking to separate icomplete-vertical package, since Emacs has the functionality integrated for some time now. | |||
| 2025-09-09 | README: Suggest completion-pcm-leading-wildcard on Emacs 31 | Daniel Mendler | |
| This way partial-completion will behave like substring instead of like basic prefix completion. If combined with orderless, the behavior will be less staggering for files, where the style may change during completion from partial-completion to orderless. | |||
| 2025-09-09 | README: The basic style is not needed for files anymore | Daniel Mendler | |
| See the Tramp problem documented here: https://github.com/minad/vertico?tab=readme-ov-file#tramp-hostname-and-username-completion | |||
| 2025-07-24 | Update URLs in README (https) | Daniel Mendler | |
| 2024-04-01 | README: Clarification about completion-category-* variables (Fix #117) | 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-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 | README: Document orderless-prefix | 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-17 | README: Fix language after renaming of orderless-pattern-compiler | 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-15 | Document the new rx format for matching styles | Omar Antolín Camarena | |
| 2023-11-10 | README: Update link | Daniel Mendler | |
| 2023-11-10 | README: Drop Selectrum documentation | Daniel Mendler | |
| 2023-02-19 | Fix typos and move image to separate branch | Daniel Mendler | |
| Take the image from a separate branch such that it is not distributed with the ELPA/MELPA packages. | |||
| 2023-01-29 | Fix typos in documentation | Omar Antolín Camarena | |
| 2023-01-29 | Add a simple affix dispatcher, make it the default (fix #131) | Omar Antolín Camarena | |
| 2022-12-23 | Add note on how to use orderless from helm (fix #105) | Omar Antolín | |
| 2022-10-23 | Merge pull request #65 from narendraj9/patch-1 | Omar Antolín Camarena | |
| Add note about custom styles for `company-capf' | |||
| 2022-10-23 | Name advice function, link to u/hvis's comment | Omar Antolín | |
| 2022-09-13 | Update README regarding Prescient (Fix #121) | Daniel Mendler | |
| 2022-04-18 | Use dircategory "Emacs misc features" for info manual | Omar Antolín | |
| Thanks to @hmelman for reporting this issue in oantolin/embark#491. | |||
| 2022-04-06 | Fix typo, update info manual | Omar Antolín | |
| 2022-04-06 | Don't call Emacs 28 "unreleased" | Omar Antolín | |
| 2022-04-06 | Tweak wording in discussion of basic completion style | Omar Antolín | |
| 2022-04-06 | README: Add partial-completion and basic overrides for files | Daniel Mendler | |
| 2022-04-06 | README: Add Mct to the list of completion systems | Daniel Mendler | |
| 2022-04-06 | Use (orderless basic) as completion-styles (Fix #111) | Daniel Mendler | |
| 2022-03-12 | Ivy: Do not auto register the highlighting function | Daniel Mendler | |
| It seems to me that there is almost no advantage of auto loading that part of the code in contrast to adding it to the configuration directly. Probably most users use Orderless with completion systems like default completion, Vertico or Mct. | |||
| 2022-01-12 | Update badges | Daniel Mendler | |
| 2022-01-11 | Remove strict initialism code by @noctuid | Daniel Mendler | |
| 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))) | |||
| 2021-11-29 | Reword sentence for clarity | Omar Antolín | |
| 2021-11-29 | Mention Corfu and consult-completion-in-region (fix #99) | Omar Antolín | |
| 2021-06-28 | Add note about custom styles for `company-capf' | Narendra Joshi | |
| 2021-06-13 | Mention orderless works fine with Vertico (fix #59) | Omar AntolÃn Camarena | |
| 2021-05-18 | README: Add variable category to orderless+initialism sample | Daniel Mendler | |
| Marginalia provides the command, symbol and variable categories. | |||
| 2021-05-16 | orderless+initialism example requires Marginalia (see #54) | Omar Antolín | |
| 2021-05-07 | Only enable regexp and literal matching styles by default | Daniel Mendler | |
| * 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 "!" | |||
| 2021-04-07 | Remove pattern compiler variable | Daniel Mendler | |
| It is unlikely that a user wants to customize this variable. If the pattern compiler is to be replaced there is still the advice mechanism. | |||
| 2021-03-23 | update readme | Daniel Mendler | |
| 2021-03-23 | Add literal matching to default styles and document (fix #42) | Omar Antolín | |
| There is some misguided consensus that any candidate should be able to match itself... :P | |||
| 2021-03-23 | Document that orderless-regexp matches invalid regexps literally | Omar Antolín | |
| 2021-02-05 | Fix typo | Omar Antolín | |
| 2021-02-04 | Don't recommend icomplete (fix #36) | Omar Antolín | |
| 2021-01-21 | Mention completion-category-defaults in the documentation | Omar Antolín | |
| 2021-01-21 | Update information about Selectrum | Omar Antolín | |
