emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/vc-got febb894 043/145: Add new customization group `vc


From: ELPA Syncer
Subject: [elpa] externals/vc-got febb894 043/145: Add new customization group `vc-got' under vc
Date: Thu, 9 Sep 2021 15:58:30 -0400 (EDT)

branch: externals/vc-got
commit febb894c3e693485f7723820782cfcaccdc2cb4d
Author: Timo Myyrä <timo.myyra@bittivirhe.fi>
Commit: Timo Myyrä <timo.myyra@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

[Prev in Thread] Current Thread [Next in Thread]