From e825ac9ad32b67c3122e46c8bef6fdd05c100626 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Fri, 19 Sep 2014 00:45:54 -0400 Subject: Change projectile-{recentf,dired} commander keys Change `projectile-recentf' to 'r' to be more consistent with other maps (e.g., `ctl-x-4-map') and my key chords. --- lisp/init-projectile.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lisp/init-projectile.el') 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)) -- cgit v1.2.3