Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Add face: dashboard-footer #145

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions dashboard-widgets.el
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ to the specified width, with aspect ratio preserved."
:height 1.1
:v-adjust -0.05
:face 'font-lock-keyword-face)
">")
(propertize ">" 'face 'dashboard-footer))
"Footer's icon.")

(defvar dashboard-startup-banner 'official
Expand Down Expand Up @@ -181,6 +181,11 @@ If nil it is disabled. Possible values for list-type are:
"Face used for widget headings."
:group 'dashboard)

(defface dashboard-footer
'((t (:inherit font-lock-doc-face)))
"Face used for widget headings."
:group 'dashboard)

(define-obsolete-face-alias
'dashboard-text-banner-face 'dashboard-text-banner "1.2.6")
(define-obsolete-face-alias
Expand Down Expand Up @@ -440,7 +445,7 @@ WIDGET-PARAMS are passed to the \"widget-create\" function."
(dashboard-center-line dashboard-footer)
(insert dashboard-footer-icon)
(insert " ")
(insert (propertize dashboard-footer 'face 'font-lock-doc-face))))
(insert (propertize dashboard-footer 'face 'dashboard-footer))))

;;
;; Recentf
Expand Down