-
I want to use the flat style by default, but specify a few commands which should use the default vertical completion style instead. In the snippet shown below, using (use-package vertico
:ensure t
:init
(vertico-mode)
(vertico-multiform-mode)
:config
(setq vertico-multiform-commands
'((switch-to-buffer vertical)
(t flat)))) |
Beta Was this translation helpful? Give feedback.
Answered by
minad
Dec 29, 2024
Replies: 1 comment 1 reply
-
It should work if you simply specify nothing, i.e., (switch-to-buffer), since vertical is the default. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ijqq
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It should work if you simply specify nothing, i.e., (switch-to-buffer), since vertical is the default.