diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-07-04 10:26:44 -0700 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-07-04 10:26:44 -0700 |
| commit | 1c4fa7962b0f1420155af9a7bc7f2065e9d7852f (patch) | |
| tree | 75249d6ed547ef5cdad6100502f991c7d4735df6 /emacs/init.el | |
| parent | 4b67e6d3ef72ad676217e2987bbade196fec1695 (diff) | |
don't shadow isearch (macro ease, moved consult-line to M-s s)
Diffstat (limited to 'emacs/init.el')
| -rw-r--r-- | emacs/init.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el index 58bcbe2..fa303cc 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -334,11 +334,12 @@ given keymap or in the global keymap." ("C-S-y" . consult-yank-from-kill-ring) ("M-g M-g" . consult-goto-line) ("M-i" . consult-imenu-multi) - ("C-s" . consult-line) ("C-S-s" . consult-line-multi) ("M-s g" . consult-grep) ("M-s G" . grep) - ("M-s f" . consult-find)) + ("M-s f" . consult-find) + ;; move some standard binds + ("M-s s" . consult-line)) (use-package embark-consult :after embark consult) |
