summaryrefslogtreecommitdiff
path: root/README.org
AgeCommit message (Collapse)Author
2022-01-11Remove strict initialism code by @noctuidDaniel 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-29Reword sentence for clarityOmar Antolín
2021-11-29Mention Corfu and consult-completion-in-region (fix #99)Omar Antolín
2021-06-13Mention orderless works fine with Vertico (fix #59)Omar Antolín Camarena
2021-05-18README: Add variable category to orderless+initialism sampleDaniel Mendler
Marginalia provides the command, symbol and variable categories.
2021-05-16orderless+initialism example requires Marginalia (see #54)Omar Antolín
2021-05-07Only enable regexp and literal matching styles by defaultDaniel 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-07Remove pattern compiler variableDaniel 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-23update readmeDaniel Mendler
2021-03-23Add 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-23Document that orderless-regexp matches invalid regexps literallyOmar Antolín
2021-02-05Fix typoOmar Antolín
2021-02-04Don't recommend icomplete (fix #36)Omar Antolín
2021-01-21Mention completion-category-defaults in the documentationOmar Antolín
2021-01-21Update information about SelectrumOmar Antolín
2021-01-20Remove all orderless-transient-* variables (fix #34)Omar Antolín
2021-01-20Revert "Add matching style and dispatcher per category overrides (fix #31)"Omar Antolín
This reverts commit d1c0cbf87ba7d927ec64c161ec3aac65b9643b61.
2021-01-20Revert "Update documentation" for #31Omar Antolín
This reverts commit 4844452f4e7008da2ebe96c7dbbb7bcd655bbe68.
2021-01-20Revert documentation for #31Omar Antolín
This reverts commit 43896f3e1063929435616cede89228278ff491cb.
2021-01-18Accidentally omitted the overview! Bring it backOmar Antolín
2021-01-18Update documentationOmar Antolín
1. Mention setting completion-category-defaults to nil. 2. Update comments about Selectrum.
2021-01-18Merge branch 'master' of https://github.com/oantolin/orderlessOmar Antolín
2021-01-18Add matching style and dispatcher per category overrides (fix #31)Omar Antolín
2021-01-07Corrected broken linkBen Lloyd
2021-01-04Minor readme tweakOmar Antolín
2021-01-04Modify readme for better texinfo exportOmar Antolín
2021-01-04Merge branch 'master' of https://github.com/oantolin/orderlessOmar Antolín
2021-01-04Generate texinfo manual from readmeOmar Antolín
2021-01-03Remove a duplicated documentation entryWojciech Siewierski
orderless-prefixes is already documented higher up, with exactly the same description.
2021-01-01Add negative literals (fix #26)Omar Antolín Camarena
2020-09-11Add badge.JenChieh
2020-05-04Document custom splitter optionOmar Antolín
2020-05-04Correct error about orderless-transient-style-dispatchers in READMEOmar Antolín
2020-05-02Merge branch 'dispatcher'Omar Antolín
2020-05-02Split dispatchers into their own variabledispatcherOmar Antolín
2020-05-02Remove global dispatchersOmar Antolín
2020-04-30Update dispatchers documentation, add transient varsOmar Antolín
2020-04-29Put integration before related packages in READMEOmar Antolín
2020-04-29Undocument orderless-temporarily-change-separator in READMEOmar Antolín
2020-04-28Ido has progressive completion too!Omar Antolín
2020-04-27Drew says "progressive completion"Omar Antolín Camarena
2020-04-27Update dispatchers documentation, and documents pattern compilerOmar Antolín
2020-04-26Document style dispatches in the READMEOmar Antolín
2020-04-25Add Company to TOC0.3Omar Antolín
2020-04-25Explain company integration (+ misc formatting improvements)Omar Antolín
2020-04-25Fix typoClemens Radermacher
2020-04-24Add more orderless initialism stylesFox Kiester
The orderless-strict-initialism style does not allow unmatched words to be in between initials. The orderless-strict-leading-initialism style additionally requires that the first initial match the candidate's beginning. The orderless-strict-full-initialiasm style additionally requires the last initial be at the last word.
2020-04-24Improve ivy integrationOmar Antolín
2020-04-24Mention Ivy support in overviewOmar Antolín Camarena
2020-04-24List more helpful functions for integrationOmar Antolín