At some rg and deadgrep bindings

This commit is contained in:
David Morgan 2022-10-14 16:53:09 +01:00
parent 5812e11f2d
commit 57288a4d90
Signed by: djm
GPG Key ID: C171251002C200F2
1 changed files with 10 additions and 2 deletions

View File

@ -42,9 +42,17 @@
(use-package rg
:bind
("C-c C-M-S-r" . rg-menu)
("C-c C-M-r" . rg))
("C-c C-M-r" . rg)
("C-z" . rg-dwim))
(use-package deadgrep)
(use-package deadgrep
:config
(defun deadgrep-symbol-at-point ()
(interactive)
(deadgrep (thing-at-point 'symbol)))
:bind
("C-S-z" . deadgrep-symbol-at-point)
("C-c c d" . deadgrep))
(use-package affe
:config