| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-10-16 | Generalize corfu-quit-predicategeneralize-predicates | Daniel Mendler | |
| 2021-10-16 | Generalize corfu-commit-predicate | Daniel Mendler | |
| 2021-10-14 | Set Corfu minibuffer explicitly (Fix #65) | Daniel Mendler | |
| 2021-10-11 | More verbose error message | Daniel Mendler | |
| 2021-10-11 | Version 0.130.13 | Daniel Mendler | |
| 2021-10-11 | Check that completion field is non-empty | Daniel Mendler | |
| 2021-10-11 | Version 0.120.12 | Daniel Mendler | |
| 2021-10-11 | Revert "Do not reorder candidates with the input prefix before the others" | Daniel Mendler | |
| This reverts commit 98241803d1e2e7b422fc9606fe5fc6ab305e93bc. | |||
| 2021-10-09 | define-minor-mode: Specify group | Daniel Mendler | |
| 2021-10-09 | Use elegant modus colors by default | Daniel Mendler | |
| 2021-10-06 | Update README | Daniel Mendler | |
| 2021-10-06 | Do not reorder candidates with the input prefix before the others | Daniel Mendler | |
| * This code was introduced to ease the usage of Orderless, where the input must not necessarily occur at the beginning. My recommendation is to use an Orderless style dispatcher instead, where the first word is prefixed with ^ for Corfu. Doing this even results in a performance win, since Orderless compiles ^words in a smart way such that prefix filtering takes place inside the completion table. See https://github.com/oantolin/orderless/issues/79 and https://github.com/oantolin/orderless/issues/81. See the Orderless style dispatcher from the Consult wiki https://github.com/minad/consult/wiki: (defun +orderless-dispatch (pattern index _total) (cond ;; Treat first component as prefix. This is useful for Corfu completion-in-region. ((and completion-in-region-mode (= index 0)) `(orderless-regexp . ,(concat "^" (regexp-quote pattern)))) ...)) * If you use the basic completion style, the input is already used for prefix filtering and this change has no effect. * If you use another completion style which even sorts the candidates itself, e.g., flex, this change is advantageous since it gives the completion style more control. | |||
| 2021-10-03 | Update README | Daniel Mendler | |
| 2021-09-19 | Better criterion for auto completion (Fix #62) | Daniel Mendler | |
| 2021-09-19 | Disallow selection of root window (Fix #63) | Daniel Mendler | |
| 2021-09-11 | Mark window as dedicated to prevent frame reuse (Fix #60) | Daniel Mendler | |
| 2021-09-04 | Limit child frame size by `(frame-width)` (Fix #55) | Daniel Mendler | |
| 2021-08-13 | Make child frame invisible before moving | Daniel Mendler | |
| 2021-08-12 | corfu--auto-complete: Guard against incompatible capf results | Daniel Mendler | |
| Legacy capfs? | |||
| 2021-08-11 | Version 0.110.11 | Daniel Mendler | |
| 2021-08-10 | Refine the corfu-complete criterion | Daniel Mendler | |
| 2021-08-10 | corfu-complete: Insert first candidate, when try-completion did not make ↵ | Daniel Mendler | |
| progress Check if last-command=corfu-complete | |||
| 2021-08-09 | Correct docstring | Daniel Mendler | |
| 2021-08-09 | Simplify conditional | Daniel Mendler | |
| 2021-08-09 | Avoid recomputation for empty input (Fix #48) | Daniel Mendler | |
| 2021-08-09 | Enable prefix arguments for corfu-next/previous | Daniel Mendler | |
| 2021-08-09 | Enable prefix arguments for scrolling | Daniel Mendler | |
| 2021-08-09 | Go back to prompt with scroll on first candidate. (#51) | JD Smith | |
| 2021-08-09 | Fix typos | Daniel Mendler | |
| 2021-08-09 | Expand comment | Daniel Mendler | |
| 2021-08-09 | Latency improvements, see #48 | Daniel Mendler | |
| Add a redisplay before the expensive candidate recomputation and before hiding the popup. | |||
| 2021-08-09 | Try to make the teardown more robust | Daniel Mendler | |
| 2021-08-08 | Optimize corfu--move-prefix-candidates-to-front (See #48) | Daniel Mendler | |
| 2021-08-06 | Fix completion cycling in eshell | Daniel Mendler | |
| 2021-07-30 | Set tab-bar-format to nil (Emacs 28) | Daniel Mendler | |
| Thanks, @protesilaos | |||
| 2021-07-30 | Fix popup position if line is wrapped with truncate-lines=nil | Daniel Mendler | |
| 2021-07-23 | Quit if while-no-input returned nil | Daniel Mendler | |
| 2021-07-23 | README: Remove capf documentation for now | Daniel Mendler | |
| These capfs should go to a separate package | |||
| 2021-07-22 | Add LICENSE file | Daniel Mendler | |
| 2021-07-22 | README: Expand file path capf documentation | Daniel Mendler | |
| 2021-07-22 | README: Move configuration section | Daniel Mendler | |
| 2021-07-22 | README: Add defvar and autoload | Daniel Mendler | |
| 2021-07-22 | Document file path completion (See #9) | Daniel Mendler | |
| 2021-07-22 | Touch up features (#43) | JD Smith | |
| 2021-07-22 | corfu-echo-documentation: Use a smaller delay | Daniel Mendler | |
| 2021-07-22 | corfu--echo: Only add highlighting if no highlighting is present | Daniel Mendler | |
| 2021-07-22 | Reset corfu--auto-start after a candidate has been selected | Daniel Mendler | |
| 2021-07-22 | Fix defcustom | Daniel Mendler | |
| 2021-07-22 | README: Update example configuration | Daniel Mendler | |
| 2021-07-22 | Add corfu-echo-documentation (Fix #36) | Daniel Mendler | |
