summaryrefslogtreecommitdiff
path: root/contrib/emacs/git.el
diff options
context:
space:
mode:
authorAlexandre Julliard <julliard@winehq.org>2006-11-03 16:41:46 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-11-04 09:50:22 (GMT)
commitb8ee51815ad0520b0340c2a594dee1f8de9c7c8a (patch)
tree5bb23f6f265f5cd6962ebc1798e40502bf84bea1 /contrib/emacs/git.el
parent8a078c3f72002af9bf79dc884fe321e3e48930fc (diff)
downloadgit-b8ee51815ad0520b0340c2a594dee1f8de9c7c8a.zip
git-b8ee51815ad0520b0340c2a594dee1f8de9c7c8a.tar.gz
git-b8ee51815ad0520b0340c2a594dee1f8de9c7c8a.tar.bz2
git.el: Added a function to open the current file in another window.
Bound to 'o' by default, compatible with pcl-cvs and buffer-mode. Suggested by Han-Wen Nienhuys. Signed-off-by: Alexandre Julliard <julliard@winehq.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'contrib/emacs/git.el')
-rw-r--r--contrib/emacs/git.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/emacs/git.el b/contrib/emacs/git.el
index e283df2..08d6404 100644
--- a/contrib/emacs/git.el
+++ b/contrib/emacs/git.el
@@ -910,6 +910,15 @@ and returns the process output as a string."
(when (eq 'unmerged (git-fileinfo->state info))
(smerge-mode))))
+(defun git-find-file-other-window ()
+ "Visit the current file in its own buffer in another window."
+ (interactive)
+ (unless git-status (error "Not in git-status buffer."))
+ (let ((info (ewoc-data (ewoc-locate git-status))))
+ (find-file-other-window (git-fileinfo->name info))
+ (when (eq 'unmerged (git-fileinfo->state info))
+ (smerge-mode))))
+
(defun git-find-file-imerge ()
"Visit the current file in interactive merge mode."
(interactive)
@@ -994,6 +1003,7 @@ and returns the process output as a string."
(define-key map "M" 'git-mark-all)
(define-key map "n" 'git-next-file)
(define-key map "N" 'git-next-unmerged-file)
+ (define-key map "o" 'git-find-file-other-window)
(define-key map "p" 'git-prev-file)
(define-key map "P" 'git-prev-unmerged-file)
(define-key map "q" 'git-status-quit)