try another completion function in minibuffer input

This commit is contained in:
2023-05-22 10:01:12 +02:00
parent a5dd422adc
commit 6c2acbbae2

View File

@@ -43,7 +43,12 @@ via [[http://whattheemacsd.com/setup-ido.el-02.html][whattheemacs.d]]"
;; experimental, pressing tab on a match doesn't ;; experimental, pressing tab on a match doesn't
;; complete it but show the next match, that way I avoid ;; complete it but show the next match, that way I avoid
;; being completed into nonsense matches ;; 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)
))