diff options
author | Thanos Apollo <[email protected]> | 2023-12-10 10:35:58 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-12-10 10:35:58 +0200 |
commit | 5a72f5e349aaa6dcbc13ad9efa8d9f5cfef4ae47 (patch) | |
tree | 07a72549664d0112ca31e172a164531d7d071636 /.emacs.d/modules | |
parent | 373b7fd540fe260b703a250a9ab32a53e6a4d4f6 (diff) |
emacs:(tools) Update keybinding for consult-locate
Diffstat (limited to '.emacs.d/modules')
-rw-r--r-- | .emacs.d/modules/thanos-tools.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.emacs.d/modules/thanos-tools.el b/.emacs.d/modules/thanos-tools.el index 27eb8cb..d072525 100644 --- a/.emacs.d/modules/thanos-tools.el +++ b/.emacs.d/modules/thanos-tools.el @@ -77,14 +77,12 @@ "s" #'consult-line "C-f" #'consult-find "C-g" #'consult-grep - "C-i" #'consult-info) + "C-i" #'consult-info + "C-l" #'consult-locate) (define-key global-map (kbd "C-s") thanos/search) - (define-key project-prefix-map (kbd "b") 'consult-project-buffer) (define-key global-map (kbd "M-y") 'consult-yank-from-kill-ring) -(define-key global-map (kbd "C-c l") 'consult-locate) - (setf xref-show-xrefs-function #'consult-xref xref-show-definitions-function #'consult-xref) |