From 6c2acbbae2d6d76c2f8287d765f0c6706168f4ba Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Mon, 22 May 2023 10:01:12 +0200 Subject: [PATCH] try another completion function in minibuffer input --- lisp/init-smarter-than-emacs.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/init-smarter-than-emacs.el b/lisp/init-smarter-than-emacs.el index e55af81..91a4e51 100644 --- a/lisp/init-smarter-than-emacs.el +++ b/lisp/init-smarter-than-emacs.el @@ -43,7 +43,12 @@ via [[http://whattheemacsd.com/setup-ido.el-02.html][whattheemacs.d]]" ;; experimental, pressing tab on a match doesn't ;; complete it but show the next match, that way I avoid ;; being completed into nonsense matches - ("TAB" . #'vertico-next))) + + ;; FIXME: set this to complete* + ;; ("TAB" . #'vertico-next) + ;; next try: use vanilla complete on tab, maybe better? + ("TAB" . #'minibuffer-complete) + ))