completion/selectrum -> completion/vertico, part 2
- Rename module from `:completion selectrum` to `:completion vertico` - Rename all files involved - Do *not* yet rename all the functions, as that messes up git's rename detection.
This commit is contained in:
parent
f9e1c99b2b
commit
24eaa1317c
33 changed files with 79 additions and 90 deletions
|
@ -69,8 +69,8 @@ argument) is non-nil only show channels in current server."
|
|||
(interactive "P")
|
||||
(call-interactively
|
||||
(cond ((featurep! :completion ivy) #'+irc/ivy-jump-to-channel)
|
||||
((featurep! :completion selectrum) #'+irc/selectrum-jump-to-channel)
|
||||
((user-error "No jump-to-channel backend is enabled. Enable selectrum or ivy!")))))
|
||||
((featurep! :completion vertico) #'+irc/selectrum-jump-to-channel)
|
||||
((user-error "No jump-to-channel backend is enabled. Enable vertico or ivy!")))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +irc--circe-all-buffers ()
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
;;; app/irc/autoload/selectrum.el -*- lexical-binding: t; -*-
|
||||
;;;###if (featurep! :completion selectrum)
|
||||
;;; app/irc/autoload/vertico.el -*- lexical-binding: t; -*-
|
||||
;;;###if (featurep! :completion vertico)
|
||||
|
||||
;;;###autoload
|
||||
(defun +irc/selectrum-jump-to-channel ()
|
||||
"Jump to an open channel or server buffer with selectrum."
|
||||
"Jump to an open channel or server buffer with vertico."
|
||||
(interactive)
|
||||
(require 'consult)
|
||||
(consult--multi (list (plist-put (copy-sequence +irc--consult-circe-source)
|
Loading…
Add table
Add a link
Reference in a new issue