tools/eshell: autoload custom faces & add :group

This commit is contained in:
Henrik Lissner 2018-05-11 20:17:00 +02:00
parent 99eef125b0
commit 42e44a6cc9
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395

View File

@ -1,13 +1,19 @@
;;; tools/eshell/autoload/eshell.el -*- lexical-binding: t; -*-
;;;###autoload
(defface +eshell-prompt-pwd '((t :inherit eshell-prompt))
"TODO")
"TODO"
:group 'eshell)
;;;###autoload
(defface +eshell-prompt-git-branch '((t :inherit font-lock-function-name-face))
"TODO")
"TODO"
:group 'eshell)
;;;###autoload
(defface +eshell-prompt-char '((t :inherit font-lock-constant-face))
"TODO")
"TODO"
:group 'eshell)
(defvar +eshell-buffers (make-ring 25)