зеркало из https://github.com/microsoft/git.git
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>
This commit is contained in:
Родитель
8a078c3f72
Коммит
b8ee51815a
|
@ -910,6 +910,15 @@ and returns the process output as a string."
|
||||||
(when (eq 'unmerged (git-fileinfo->state info))
|
(when (eq 'unmerged (git-fileinfo->state info))
|
||||||
(smerge-mode))))
|
(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 ()
|
(defun git-find-file-imerge ()
|
||||||
"Visit the current file in interactive merge mode."
|
"Visit the current file in interactive merge mode."
|
||||||
(interactive)
|
(interactive)
|
||||||
|
@ -994,6 +1003,7 @@ and returns the process output as a string."
|
||||||
(define-key map "M" 'git-mark-all)
|
(define-key map "M" 'git-mark-all)
|
||||||
(define-key map "n" 'git-next-file)
|
(define-key map "n" 'git-next-file)
|
||||||
(define-key map "N" 'git-next-unmerged-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-file)
|
||||||
(define-key map "P" 'git-prev-unmerged-file)
|
(define-key map "P" 'git-prev-unmerged-file)
|
||||||
(define-key map "q" 'git-status-quit)
|
(define-key map "q" 'git-status-quit)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче