diff options
-rw-r--r-- | lisp/init-projectile.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/init-projectile.el b/lisp/init-projectile.el index b5004a1..8c6ee11 100644 --- a/lisp/init-projectile.el +++ b/lisp/init-projectile.el @@ -52,7 +52,7 @@ Interactive arguments are processed according to (message "%s" fname))) ;; Default binding is D. -(def-projectile-commander-method ?r +(def-projectile-commander-method ?t "Open project root in dired." (projectile-dired)) @@ -77,6 +77,11 @@ Interactive arguments are processed according to "Run project compilation command." (call-interactively 'projectile-compile-project)) +;; Default binding is e. +(def-projectile-commander-method ?r + "Find recently visited file in project." + (projectile-recentf)) + (def-projectile-commander-method ?F "Find project file in other window." (call-interactively 'projectile-find-file-other-window)) |