Skip to content

Commit

Permalink
Remove redundant :group in defcustom forms
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Aug 18, 2023
1 parent b1998ac commit 7da87a2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions justl.el
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,11 @@
(defcustom justl-executable "just"
"Location of just executable."
:type 'file
:group 'justl
:safe 'stringp)

(defcustom justl-recipe-width 20
"Width of the recipe column."
:type 'integer
:group 'justl)
:type 'integer)

(defcustom justl-justfile nil
"Buffer local variable which points to the justfile.
Expand All @@ -104,7 +102,6 @@ If this is NIL, it means that no justfile was found. In any
other cases, it's a known path."
:type 'string
:local t
:group 'justl
:safe 'stringp)

(defcustom justl-include-private-recipes t
Expand Down

0 comments on commit 7da87a2

Please sign in to comment.