-
|
Ever since I updated to Emacs 30.2 (from Emacs 29), I'm running into this issue. When running I can type or paste I've reproduced this using ;; -*- lexical-binding: t; -*-
(package-initialize)
(add-to-list 'package-archives '("melpa". "https://melpa.org/packages/"))
(unless (package-installed-p 'vertico)
(package-refresh-contents)
(package-install 'vertico))
(require 'vertico)
(vertico-mode +1)I'm running Emacs 30.2 on macOS: I'm using Vertico 2.7-4-g94824b5. I also tried adding this for good measure, (defun vertico-enforce-basic-completion (&rest args)
(minibuffer-with-setup-hook
(:append
(lambda ()
(let ((map (make-sparse-keymap)))
(define-key map [tab] #'minibuffer-complete)
(use-local-map (make-composed-keymap (list map) (current-local-map))))
(setq-local completion-styles (cons 'basic completion-styles)
vertico-preselect 'prompt)))
(apply args)))
(advice-add #'org-make-tags-matcher :around #'vertico-enforce-basic-completion)
(advice-add #'org-agenda-filter :around #'vertico-enforce-basic-completion)But perhaps unsurprisingly it didn't help with this problem. Has anyone else run into this issue? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
You mean the agenda filter /, right? I cannot reproduce this problem. Maybe it has been resolved by a newer version of Org. You could install it from GNU ELPA. Do you use the newest version of Vertico? In the past, there had been a similar bug in Org, which is now fixed, see #633. |
Beta Was this translation helpful? Give feedback.
You mean the agenda filter /, right? I cannot reproduce this problem. Maybe it has been resolved by a newer version of Org. You could install it from GNU ELPA. Do you use the newest version of Vertico?
In the past, there had been a similar bug in Org, which is now fixed, see #633.