diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-08-28 14:21:55 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-08-28 14:21:55 +0100 |
commit | 974d7987a788284b334c863cd5bfc9edd07c2dd3 (patch) | |
tree | 0685cd1b044202b0ea90f08dd66fc64f4384d1aa /.emacs.d/lisp | |
parent | b67d9d8827772d93ff35a023bfe8c65a4afeb015 (diff) | |
download | dotfiles-974d7987a788284b334c863cd5bfc9edd07c2dd3.tar.gz |
Bind C-x f to projectile-recentf
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-projectile.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-projectile.el b/.emacs.d/lisp/init-projectile.el index 84f1842..d314c8b 100644 --- a/.emacs.d/lisp/init-projectile.el +++ b/.emacs.d/lisp/init-projectile.el @@ -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))) |