summaryrefslogtreecommitdiff
path: root/README.org
AgeCommit message (Collapse)Author
2024-04-01README: Clarification about completion-category-* variables (Fix #117)Daniel Mendler
2024-03-05Change 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-03Rename orderless-prefix to orderless-literal-prefix and registerDaniel 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-03README: Document orderless-prefixDaniel Mendler
2024-02-25Work around bug in GitHub's org parserfix-github-orgOmar 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-23README: Add section for style modifiersDaniel Mendler
2024-02-17README: Fix language after renaming of orderless-pattern-compilerDaniel Mendler
2024-02-16Rename orderless-pattern-compiler to orderless-compileDaniel Mendler
orderless-compile returns a predicate and a list of regexps. Keep orderless-pattern-compiler as obsolete function.
2024-02-16Rename orderless-dispatch to orderless--dispatchDaniel Mendler
The function is internal.
2024-02-15Document the new rx format for matching stylesOmar Antolín Camarena
2023-11-10README: Update linkDaniel Mendler
2023-11-10README: Drop Selectrum documentationDaniel Mendler
2023-02-19Fix typos and move image to separate branchDaniel Mendler
Take the image from a separate branch such that it is not distributed with the ELPA/MELPA packages.
2023-01-29Fix typos in documentationOmar Antolín Camarena
2023-01-29Add a simple affix dispatcher, make it the default (fix #131)Omar Antolín Camarena
2022-12-23Add note on how to use orderless from helm (fix #105)Omar Antolín
2022-10-23Merge pull request #65 from narendraj9/patch-1Omar Antolín Camarena
Add note about custom styles for `company-capf'
2022-10-23Name advice function, link to u/hvis's commentOmar Antolín
2022-09-13Update README regarding Prescient (Fix #121)Daniel Mendler
2022-04-18Use dircategory "Emacs misc features" for info manualOmar Antolín
Thanks to @hmelman for reporting this issue in oantolin/embark#491.
2022-04-06Fix typo, update info manualOmar Antolín
2022-04-06Don't call Emacs 28 "unreleased"Omar Antolín
2022-04-06Tweak wording in discussion of basic completion styleOmar Antolín
2022-04-06README: Add partial-completion and basic overrides for filesDaniel Mendler
2022-04-06README: Add Mct to the list of completion systemsDaniel Mendler
2022-04-06Use (orderless basic) as completion-styles (Fix #111)Daniel Mendler
2022-03-12Ivy: Do not auto register the highlighting functionDaniel 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-12Update badgesDaniel Mendler
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-28Add note about custom styles for `company-capf'Narendra Joshi
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.