summaryrefslogtreecommitdiff
path: root/helm-source.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2017-05-24 06:54:11 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2017-05-24 06:54:11 +0200
commit3a1e91978703e057909c95b646073b289b81cb00 (patch)
tree65188be244d8d83cfb60124069a467d0cf6c97ff /helm-source.el
parent330d5e81c12f28a0beecf0a2ed1a88917a88a781 (diff)
Add group slot to helm-source and use it.
* helm-source.el (helm-source): Do it. * helm.el (helm-map): Bind customize fn. (helm-customize-group): New.
Diffstat (limited to 'helm-source.el')
-rw-r--r--helm-source.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/helm-source.el b/helm-source.el
index e63c731d..44d156d4 100644
--- a/helm-source.el
+++ b/helm-source.el
@@ -558,7 +558,14 @@ With a value of 1 enable, a value of -1 or nil disable the mode.
:custom (choice null integer)
:documentation
" This slot have no more effect and is just kept for backward compatibility.
- Please don't use it."))
+ Please don't use it.")
+
+ (group
+ :initarg :group
+ :initform helm
+ :custom symbol
+ :documentation
+ " The current source group, default to `helm' when not specified."))
"Main interface to define helm sources."
:abstract t)