We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f31e69c commit 7d9be65Copy full SHA for 7d9be65
add-node-modules-path.el
@@ -31,15 +31,22 @@
31
32
;;; Code:
33
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
+
39
;;;###autoload
40
(defcustom add-node-modules-path-debug nil
41
"Enable verbose output when non nil."
- :type 'boolean)
42
+ :type 'boolean
43
+ :group 'add-node-modules-path)
44
45
46
(defcustom add-node-modules-max-depth 20
47
"Max depth to look for node_modules."
- :type 'integer)
48
+ :type 'integer
49
50
51
52
(defun add-node-modules-path ()
0 commit comments