From 4a14d2e37b565df756efa3c97d2151d7a8096878 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 11 Mar 2024 16:14:00 +0100 Subject: [PATCH] Add default keybinding for accessing recently used files Since `counsel-switch-buffer` has been replaced by the plain `switch-to-buffer`, recently used files are not shown there anymore, so let's make `recentf` easier to access. NB: `consult` also provides a function akin to `counsel-switch-buffer`, so maybe this keybinding will not be that relevant anymore in the future. --- init.el | 1 + 1 file changed, 1 insertion(+) diff --git a/init.el b/init.el index b687001..e5fc885 100644 --- a/init.el +++ b/init.el @@ -3018,6 +3018,7 @@ eventuelly be set to nil, however)." (bind-key "C-c n i" #'org-roam-node-insert) (bind-key "C-c n c" #'org-roam-capture) (bind-key "C-c o" #'hydra-org-custom/body) + (bind-key "C-c r" #'recentf) (bind-key "C-c t" #'hydra-toggle/body) (bind-key "C-h C-f" #'find-function) (bind-key "C-h C-k" #'find-function-on-key)