branch: externals/vc-got
commit febb894c3e693485f7723820782cfcaccdc2cb4d
Author: Timo Myyrä <timo.my...@bittivirhe.fi>
Commit: Timo Myyrä <timo.my...@bittivirhe.fi>

    Add new customization group `vc-got' under vc
    
    this moves the customization options to its own group
---
 vc-got.el | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/vc-got.el b/vc-got.el
index 2e1eecb..3e4882d 100755
--- a/vc-got.el
+++ b/vc-got.el
@@ -106,9 +106,14 @@
 
 (require 'vc-got-stage)
 
+(defgroup vc-got nil
+  "VC GoT backend."
+  :group 'vc)
+
 (defcustom vc-got-program "got"
   "Name of the Got executable (excluding any arguments)."
-  :type 'string)
+  :type 'string
+  :group 'vc-got)
 
 (defcustom vc-got-diff-switches t
   "String or list of strings specifying switches for Got diff under VC.
@@ -116,7 +121,8 @@ If nil, use the value of `vc-diff-switches'.  If t, use no 
switches."
   :type '(choice (const :tag "Unspecified" nil)
                  (const :tag "None" t)
                  (string :tag "Argument String")
-                 (repeat :tag "Argument List" :value ("") string)))
+                 (repeat :tag "Argument List" :value ("") string))
+  :group 'vc-got)
 
 ;; helpers
 

Reply via email to