2019-05-18 23:41:18 -04:00
|
|
|
;;; term/eshell/autoload/prompts.el -*- lexical-binding: t; -*-
|
2018-06-18 22:31:27 +02:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defface +eshell-prompt-pwd '((t :inherit font-lock-constant-face))
|
|
|
|
"TODO"
|
|
|
|
:group 'eshell)
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defface +eshell-prompt-git-branch '((t :inherit font-lock-builtin-face))
|
|
|
|
"TODO"
|
|
|
|
:group 'eshell)
|
|
|
|
|
|
|
|
|
|
|
|
(defun +eshell--current-git-branch ()
|
|
|
|
(let ((branch (car (cl-loop for match in (split-string (shell-command-to-string "git branch") "\n")
|
|
|
|
if (string-match-p "^\*" match)
|
|
|
|
collect match))))
|
|
|
|
(if (not (eq branch nil))
|
|
|
|
(format " [%s]" (substring branch 2))
|
|
|
|
"")))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun +eshell-default-prompt ()
|
|
|
|
"Generate the prompt string for eshell. Use for `eshell-prompt-function'."
|
|
|
|
(concat (if (bobp) "" "\n")
|
2018-06-28 19:29:26 +02:00
|
|
|
(let ((pwd (eshell/pwd)))
|
|
|
|
(propertize (if (equal pwd "~")
|
|
|
|
pwd
|
|
|
|
(abbreviate-file-name (shrink-path-file pwd)))
|
|
|
|
'face '+eshell-prompt-pwd))
|
2018-06-18 22:31:27 +02:00
|
|
|
(propertize (+eshell--current-git-branch)
|
|
|
|
'face '+eshell-prompt-git-branch)
|
|
|
|
(propertize " λ" 'face (if (zerop eshell-last-command-status) 'success 'error))
|
|
|
|
" "))
|