Commit Diff


commit - d54ceb890b973c9f1af37a21789f52f5db830a37
commit + febb894c3e693485f7723820782cfcaccdc2cb4d
blob - 2e1eecb2de9fd1ef795b51574aa6166363fcb3e2
blob + 3e4882daf753b25adfc618e33e187564e326b76f
--- vc-got.el
+++ 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, us
   :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