From f2d9111463cf5ce23e27f71bbef36a10aecc7e83 Mon Sep 17 00:00:00 2001 From: Marc Date: Tue, 7 Mar 2023 11:09:23 +0100 Subject: [PATCH] keybindings for avy --- config.org | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index ba4549f..28fe3e8 100644 --- a/config.org +++ b/config.org @@ -643,7 +643,13 @@ Also replaces ace-window for buffer switching. #+BEGIN_SRC emacs-lisp (use-package avy :ensure t - :bind ("M-s w" . avy-goto-char-2)) + :general + (:prefix "M-s" + "" '(:ignore t :which-key "avy") + "w" '(avy-goto-char-2 :which-key "avy-jump") + "c" '(:ignore t :which-key "avy copy") + "c l" '(avy-copy-line :which-key "avy copy line") + "c r" '(avy-copy-region :which-key "avy copy region"))) #+END_SRC * Vertico & Orderless