fix(default): bind s-f to consult-line for macos users
Swiper is present if the ivy or helm backends are enabled, otherwise, use consult-line.
This commit is contained in:
parent
e65e2ea9e5
commit
3c66264656
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ Continues comments if executed from a commented line. Consults
|
|||
"s-l" #'goto-line
|
||||
;; Restore OS undo, save, copy, & paste keys (without cua-mode, because
|
||||
;; it imposes some other functionality and overhead we don't need)
|
||||
"s-f" #'swiper
|
||||
"s-f" (if (featurep! :completion vertico) #'consult-line #'swiper)
|
||||
"s-z" #'undo
|
||||
"s-Z" #'redo
|
||||
"s-c" (if (featurep 'evil) #'evil-yank #'copy-region-as-kill)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue