Add merge message to eshell prompt
This commit is contained in:
parent
67fdc1c341
commit
caeed32623
8
init.el
8
init.el
@ -929,7 +929,9 @@ If no name is given, list all bookmarks instead."
|
||||
((= status-char ?D)
|
||||
(add-to-list 'status-arr ?))
|
||||
((= status-char ?R)
|
||||
(add-to-list 'status-arr ?»)))))
|
||||
(add-to-list 'status-arr ?»))
|
||||
((= status-char ?U)
|
||||
(add-to-list 'status-arr ?=)))))
|
||||
(sort status-arr #'<)
|
||||
(when branch-status
|
||||
(push branch-status status-arr))
|
||||
@ -941,7 +943,9 @@ If no name is given, list all bookmarks instead."
|
||||
((file-exists-p (expand-file-name "REVERT_HEAD" git-dir))
|
||||
"REVERTING")
|
||||
((file-exists-p (expand-file-name "rebase-merge" git-dir))
|
||||
"REBASING"))))
|
||||
"REBASING")
|
||||
((file-exists-p (expand-file-name "MERGE_HEAD" git-dir))
|
||||
"MERGING"))))
|
||||
(defun my/-eshell-prompt-git-status ()
|
||||
"Get git status for `my/-eshell-prompt-function'"
|
||||
(let ((branch (car (vc-git-branches)))
|
||||
|
Loading…
Reference in New Issue
Block a user