completion/selectrum -> completion/vertico, part 3
- Rename all functions and variables in the module to reflect the namechange (and the irc jump function)
This commit is contained in:
parent
24eaa1317c
commit
a0eb4e9b65
13 changed files with 55 additions and 55 deletions
|
@ -137,7 +137,7 @@
|
|||
:desc "Search buffer for thing at point" "S"
|
||||
(cond ((featurep! :completion helm) #'swiper-isearch-thing-at-point)
|
||||
((featurep! :completion ivy) #'swiper-isearch-thing-at-point)
|
||||
((featurep! :completion vertico) #'+selectrum/search-symbol-at-point))
|
||||
((featurep! :completion vertico) #'+vertico/search-symbol-at-point))
|
||||
:desc "Dictionary" "t" #'+lookup/dictionary-definition
|
||||
:desc "Thesaurus" "T" #'+lookup/synonyms)
|
||||
|
||||
|
@ -435,7 +435,7 @@
|
|||
(:when (featurep! :completion ivy)
|
||||
:desc "Jump to channel" "j" #'+irc/ivy-jump-to-channel)
|
||||
(:when (featurep! :completion vertico)
|
||||
:desc "Jump to channel" "j" #'+irc/selectrum-jump-to-channel)))
|
||||
:desc "Jump to channel" "j" #'+irc/vertico-jump-to-channel)))
|
||||
|
||||
;;; <leader> T --- twitter
|
||||
(:when (featurep! :app twitter)
|
||||
|
|
|
@ -207,12 +207,12 @@
|
|||
(:after vertico
|
||||
:map vertico-map
|
||||
"M-RET" #'vertico-exit-input
|
||||
"C-SPC" #'+selectrum/embark-preview
|
||||
"C-SPC" #'+vertico/embark-preview
|
||||
"C-j" #'vertico-next
|
||||
"C-M-j" #'+selectrum/next-candidate-preview
|
||||
"C-M-j" #'+vertico/next-candidate-preview
|
||||
"C-S-j" #'vertico-next-group
|
||||
"C-k" #'vertico-previous
|
||||
"C-M-k" #'+selectrum/previous-candidate-preview
|
||||
"C-M-k" #'+vertico/previous-candidate-preview
|
||||
"C-S-k" #'vertico-previous-group)))
|
||||
|
||||
|
||||
|
@ -703,7 +703,7 @@
|
|||
:desc "Search buffer for thing at point" "S"
|
||||
(cond ((featurep! :completion helm) #'swiper-isearch-thing-at-point)
|
||||
((featurep! :completion ivy) #'swiper-isearch-thing-at-point)
|
||||
((featurep! :completion vertico) #'+selectrum/search-symbol-at-point))
|
||||
((featurep! :completion vertico) #'+vertico/search-symbol-at-point))
|
||||
:desc "Dictionary" "t" #'+lookup/dictionary-definition
|
||||
:desc "Thesaurus" "T" #'+lookup/synonyms)
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ If prefix ARG is set, prompt for a directory to search from."
|
|||
(call-interactively
|
||||
(cond ((featurep! :completion ivy) #'+ivy/project-search-from-cwd)
|
||||
((featurep! :completion helm) #'+helm/project-search-from-cwd)
|
||||
((featurep! :completion vertico) #'+selectrum/project-search-from-cwd)
|
||||
((featurep! :completion vertico) #'+vertico/project-search-from-cwd)
|
||||
(#'rgrep)))))
|
||||
|
||||
;;;###autoload
|
||||
|
@ -50,7 +50,7 @@ If prefix ARG is set, include ignored/hidden files."
|
|||
(call-interactively
|
||||
(cond ((featurep! :completion ivy) #'+ivy/project-search)
|
||||
((featurep! :completion helm) #'+helm/project-search)
|
||||
((featurep! :completion vertico) #'+selectrum/project-search)
|
||||
((featurep! :completion vertico) #'+vertico/project-search)
|
||||
(#'projectile-ripgrep)))))
|
||||
|
||||
;;;###autoload
|
||||
|
@ -78,7 +78,7 @@ If prefix ARG is set, prompt for a known project to search from."
|
|||
((featurep! :completion helm)
|
||||
(+helm/project-search nil symbol))
|
||||
((featurep! :completion vertico)
|
||||
(+selectrum/project-search nil symbol))
|
||||
(+vertico/project-search nil symbol))
|
||||
((rgrep (regexp-quote symbol))))))
|
||||
|
||||
;;;###autoload
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue