diff --git a/which-key.el b/which-key.el index 1a4212f4fb9..c6b89baf934 100644 --- a/which-key.el +++ b/which-key.el @@ -2451,8 +2451,8 @@ is selected interactively by mode in `minor-mode-map-alist'." nil "evil operator/motion keys")) (which-key--show-page))))) (let* ((key (key-description (list (read-key))))) - (when (string= key "`") - ;; evil-goto-mark reads the next char manually + (when (member key '("f" "F" "t" "T" "`")) + ;; these keys trigger commands that read the next char manually (setq which-key--inhibit-next-operator-popup t)) (cond ((and which-key-use-C-h-commands (string= "C-h" key)) (which-key-C-h-dispatch))