From 42e44a6cc97be1d29f39c371dcf5ec77c351c292 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 11 May 2018 20:17:00 +0200 Subject: [PATCH] tools/eshell: autoload custom faces & add :group --- modules/tools/eshell/autoload/eshell.el | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/modules/tools/eshell/autoload/eshell.el b/modules/tools/eshell/autoload/eshell.el index e3bb5e35b..d720240b3 100644 --- a/modules/tools/eshell/autoload/eshell.el +++ b/modules/tools/eshell/autoload/eshell.el @@ -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)