diff options
author | Alex Kost <alezost@gmail.com> | 2015-09-14 23:32:53 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-09-15 15:19:30 +0300 |
commit | 46e17df661fa6c92d0863827f3affb9385b95395 (patch) | |
tree | 4d2cb78709092a5b14129afcea46639db5a28d81 /emacs/guix.el | |
parent | 50f5c46d0674eb68201c56bef17b2a41c7744404 (diff) | |
download | guix-46e17df661fa6c92d0863827f3affb9385b95395.tar guix-46e17df661fa6c92d0863827f3affb9385b95395.tar.gz |
emacs: Add customization groups for faces.
* emacs/guix.el (guix-faces): New custom group.
* emacs/guix-base.el (guix-operation-option-key): Use it.
(guix-define-buffer-type): Generate faces group.
* emacs/guix-info.el: Adjust faces to use new groups.
(guix-info-faces): New custom group.
* emacs/guix-list.el: Likewise
(guix-list-faces): New custom group.
Diffstat (limited to 'emacs/guix.el')
-rw-r--r-- | emacs/guix.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs/guix.el b/emacs/guix.el index 244696a184..ac6efbb475 100644 --- a/emacs/guix.el +++ b/emacs/guix.el @@ -39,6 +39,11 @@ :prefix "guix-" :group 'external) +(defgroup guix-faces nil + "Guix faces." + :group 'guix + :group 'faces) + (defcustom guix-list-single-package nil "If non-nil, list a package even if it is the only matching result. If nil, show a single package in the info buffer." |