summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-08-19 01:15:00 -0400
committerKyle Meyer <kyle@kyleam.com>2014-08-19 01:15:00 -0400
commit4f0443b35add5c1b551521ce65320ddee96a05c0 (patch)
tree56d54d4f69f465c8c529c980f92297957f707502 /lisp
parentba5a5cc20ff51e86be3b495a5103df9ea69561eb (diff)
downloademacs.d-4f0443b35add5c1b551521ce65320ddee96a05c0.tar.gz
Add projectile-view-file-{,other-window} bindings
Diffstat (limited to 'lisp')
-rw-r--r--lisp/init-projectile.el14
1 files changed, 14 insertions, 0 deletions
diff --git a/lisp/init-projectile.el b/lisp/init-projectile.el
index f957cd5..2734425 100644
--- a/lisp/init-projectile.el
+++ b/lisp/init-projectile.el
@@ -71,6 +71,14 @@ path is always relative to `projectile-project-root'."
"Open project root in vc-dir or magit."
(projectile-vc))
+(def-projectile-commander-method ?v
+ "View project file."
+ (km/projectile-view-file))
+
+(def-projectile-commander-method ?V
+ "View project file in other window."
+ (km/projectile-view-file-other-window))
+
(def-projectile-commander-method ?c
"Run project compilation command."
(call-interactively 'projectile-compile-project))
@@ -89,6 +97,7 @@ path is always relative to `projectile-project-root'."
(key-chord-define-global ";s" 'projectile-switch-project)
(key-chord-define-global ";f" 'projectile-find-file)
+(key-chord-define-global ";v" 'km/projectile-view-file)
(key-chord-define-global ";d" 'projectile-find-dir)
(key-chord-define-global ";t" 'km/projectile-open-external-terminal-in-root)
(key-chord-define-global ";g" 'projectile-grep)
@@ -99,6 +108,9 @@ path is always relative to `projectile-project-root'."
(define-key projectile-mode-map (kbd "C-c p j")
'km/projectile-switch-project-to-file)
+(define-key projectile-mode-map (kbd "C-c p 4 v")
+ 'km/projectile-view-file-other-window)
+
(define-prefix-command 'projectile-ctl-x-4-map)
(define-key ctl-x-4-map "p" 'projectile-ctl-x-4-map)
@@ -110,6 +122,8 @@ path is always relative to `projectile-project-root'."
'projectile-find-dir-other-window)
(define-key projectile-ctl-x-4-map "f"
'projectile-find-file-other-window)
+(define-key projectile-ctl-x-4-map "v"
+ 'km/projectile-view-file-other-window)
(define-key projectile-ctl-x-4-map "t"
'projectile-find-implementation-or-test-other-window)