Skip to content

Commit 7d9be65

Browse files
authored
Put defcustoms into group to silent byte compiler (#18)
1 parent f31e69c commit 7d9be65

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

add-node-modules-path.el

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,22 @@
3131

3232
;;; Code:
3333

34+
(defgroup add-node-modules-path nil
35+
"Put node_modules binaries into `exec-path'."
36+
:prefix "add-node-modules-path-"
37+
:group 'environment)
38+
3439
;;;###autoload
3540
(defcustom add-node-modules-path-debug nil
3641
"Enable verbose output when non nil."
37-
:type 'boolean)
42+
:type 'boolean
43+
:group 'add-node-modules-path)
3844

3945
;;;###autoload
4046
(defcustom add-node-modules-max-depth 20
4147
"Max depth to look for node_modules."
42-
:type 'integer)
48+
:type 'integer
49+
:group 'add-node-modules-path)
4350

4451
;;;###autoload
4552
(defun add-node-modules-path ()

0 commit comments

Comments
 (0)