Fix bindings

This commit is contained in:
David Morgan 2022-10-24 20:19:57 +01:00
parent 4c9ca1c1d2
commit 487ed282e7
Signed by: djm
GPG Key ID: C171251002C200F2
1 changed files with 10 additions and 10 deletions

View File

@ -41,10 +41,10 @@
(use-package rg (use-package rg
:bind :bind
(:map search-map ("s" . rg))
("C-c C-M-S-r" . rg-menu) ("C-c C-M-S-r" . rg-menu)
("C-c C-M-r" . rg) ("C-c C-M-r" . rg)
("C-z" . rg-dwim)) ("C-z" . rg-dwim)
(:map search-map ("s" . rg)))
(use-package deadgrep (use-package deadgrep
:config :config
@ -52,11 +52,11 @@
(interactive) (interactive)
(deadgrep (thing-at-point 'symbol))) (deadgrep (thing-at-point 'symbol)))
:bind :bind
("C-S-z" . deadgrep-symbol-at-point)
("C-c c d" . deadgrep)
(:map search-map (:map search-map
("d" . deadgrep) ("d" . deadgrep)
("D" . deadgrep-symbol-at-point)) ("D" . deadgrep-symbol-at-point)))
("C-S-z" . deadgrep-symbol-at-point)
("C-c c d" . deadgrep))
(use-package affe (use-package affe
:config :config
@ -79,15 +79,15 @@
(symbol-name s)))) (symbol-name s))))
(affe-find dir initial)) (affe-find dir initial))
:bind :bind
("C-#" . affe-grep)
("C-c z" . affe-find)
("C-c Z" . my/affe-find-symbol-at-point)
("C-~" . my/affe-grep-symbol-at-point)
(:map search-map (:map search-map
("#" . affe-grep) ("#" . affe-grep)
("~" . my/affe-grep-symbol-at-point) ("~" . my/affe-grep-symbol-at-point)
("a" . affe-find) ("a" . affe-find)
("A" . my/affe-find-symbol-at-point)) ("A" . my/affe-find-symbol-at-point)))
("C-#" . affe-grep)
("C-c z" . affe-find)
("C-c Z" . my/affe-find-symbol-at-point)
("C-~" . my/affe-grep-symbol-at-point))
(provide 'init-search) (provide 'init-search)
;;; init-search.el ends here ;;; init-search.el ends here