diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-09-20 00:44:39 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-09-20 00:44:39 -0400 |
commit | f7d4f2e43e310848b431b084819458f2c41613fb (patch) | |
tree | bb837e768cdee31dc0aa641bf8b163bc47ac6fac | |
parent | 8b414db95e08b3ebcaa28820ec289f67223dbc0a (diff) | |
download | emacs.d-f7d4f2e43e310848b431b084819458f2c41613fb.tar.gz |
Swap two projectile bindings
-rw-r--r-- | lisp/init-projectile.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/init-projectile.el b/lisp/init-projectile.el index 998c9f2..7e511cb 100644 --- a/lisp/init-projectile.el +++ b/lisp/init-projectile.el @@ -113,6 +113,10 @@ Interactive arguments are processed according to (define-key projectile-command-map "." 'km/projectile-copy-project-filename-as-kill) +;; Swap `projectile-invalidate-cache' and `projectile-ibuffer'. +(define-key projectile-command-map "I" 'projectile-invalidate-cache) +(define-key projectile-command-map "i" 'projectile-ibuffer) + (define-key projectile-command-map (kbd "4 v") 'km/projectile-view-file-other-window) |