Bind C-x f to projectile-recentf

This commit is contained in:
David Morgan 2021-08-28 14:21:55 +01:00
parent b67d9d8827
commit 974d7987a7
1 changed files with 4 additions and 1 deletions

View File

@ -42,7 +42,10 @@
"C-c p" '(("C-p" . projectile-previous-project-buffer)
("C-n" . projectile-next-project-buffer)))
:bind-keymap ("C-c p" . projectile-command-map)
:bind (:map projectile-mode-map ("C-c p n" . projectile-open-new-project))
:bind
(:map projectile-mode-map
("C-c p n" . projectile-open-new-project)
("C-x f" . projectile-recentf))
:custom
(projectile-switch-project-action 'projectile-commander)
(projectile-cache-file (expand-file-name "projectile.cache" save-dir)))