diff options
author | Thanos Apollo <[email protected]> | 2024-10-30 09:54:08 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-10-30 09:54:08 +0200 |
commit | 0030f8bfdf43a1e27f9a7cf1f84d8aa638697b3b (patch) | |
tree | d7a5723abf0acbaa0e6438f0a954ccd7292a9874 /.config | |
parent | 0067e700859f11348966c337703b55820da13393 (diff) |
emacs: consult: Update keybindings.
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/init.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 1f02b65..5936de7 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -492,7 +492,7 @@ :init (define-prefix-command 'thanos/search) :bind (("C-x r d" . 'bookmark-delete) ("C-x r C-r" . 'bookmark-rename) - ("C-x r C-j" . 'consult-register) + ("C-x r j" . 'consult-register) ("C-x r SPC" . 'consult-register-store) ("C-x r b" . 'consult-bookmark) ("C-c m" . 'consult-imenu) @@ -500,12 +500,14 @@ ("C-x C-b" . 'switch-to-prev-buffer) ("M-y" . 'consult-yank-from-kill-ring) ("C-M-s" . 'consult-line) - ("M-s" . 'thanos/search) + ("C-c s" . 'thanos/search) :map thanos/search - ("M-f" . 'consult-find) + ("f" . 'consult-find) ("g" . 'consult-grep) ("i" . 'consult-info) ("l" . 'consult-locate) + ("b" . 'consult-buffer-other-window) + ("m" . 'consult-man) :map project-prefix-map ("b" . 'consult-project-buffer))) |