tree: remove defcustom :group keywords
This commit is contained in:
parent
59c161560a
commit
ab1fce78d8
2 changed files with 5 additions and 14 deletions
15
esv.el
15
esv.el
|
@ -41,28 +41,23 @@
|
||||||
|
|
||||||
(defcustom esv-close-existing-buffers nil
|
(defcustom esv-close-existing-buffers nil
|
||||||
"Whether to close an existing `esv' buffer if one already exists."
|
"Whether to close an existing `esv' buffer if one already exists."
|
||||||
:type 'boolean
|
:type 'boolean)
|
||||||
:group 'esv)
|
|
||||||
|
|
||||||
(defcustom esv-columns 72
|
(defcustom esv-columns 72
|
||||||
"Length of each line output by `esv'."
|
"Length of each line output by `esv'."
|
||||||
:type 'natnum
|
:type 'natnum)
|
||||||
:group 'esv)
|
|
||||||
|
|
||||||
(defcustom esv-mode-hook nil
|
(defcustom esv-mode-hook nil
|
||||||
"Hook run after entering `esv-mode'."
|
"Hook run after entering `esv-mode'."
|
||||||
:type 'hook
|
:type 'hook)
|
||||||
:group 'esv)
|
|
||||||
|
|
||||||
(defcustom esv-process "esv"
|
(defcustom esv-process "esv"
|
||||||
"Name of the process created by `esv'."
|
"Name of the process created by `esv'."
|
||||||
:type 'string
|
:type 'string)
|
||||||
:group 'esv)
|
|
||||||
|
|
||||||
(defcustom esv-program "esv"
|
(defcustom esv-program "esv"
|
||||||
"Path to or name of the program started by `esv'."
|
"Path to or name of the program started by `esv'."
|
||||||
:type 'string
|
:type 'string)
|
||||||
:group 'esv)
|
|
||||||
|
|
||||||
(defvar esv-arguments '()
|
(defvar esv-arguments '()
|
||||||
"List of additional arguments passed to `esv-program'.")
|
"List of additional arguments passed to `esv-program'.")
|
||||||
|
|
|
@ -43,19 +43,15 @@
|
||||||
|
|
||||||
(defcustom phobos-browser "xdg-open"
|
(defcustom phobos-browser "xdg-open"
|
||||||
"Web browser to use when opening documentation with `phobos'."
|
"Web browser to use when opening documentation with `phobos'."
|
||||||
:group 'phobos
|
|
||||||
:type 'string)
|
:type 'string)
|
||||||
(defcustom phobos-root "https://dlang.org/library"
|
(defcustom phobos-root "https://dlang.org/library"
|
||||||
"Root URL to use when viewing documentation with `phobos'."
|
"Root URL to use when viewing documentation with `phobos'."
|
||||||
:group 'phobos
|
|
||||||
:type 'string)
|
:type 'string)
|
||||||
(defcustom phobos-dpldocs-domain "dpldocs.info"
|
(defcustom phobos-dpldocs-domain "dpldocs.info"
|
||||||
"Root domain to use when viewing documentation on dub packages with `dub-doc'."
|
"Root domain to use when viewing documentation on dub packages with `dub-doc'."
|
||||||
:group 'phobos
|
|
||||||
:type 'string)
|
:type 'string)
|
||||||
(defcustom phobos-registry-root "https://code.dlang.org"
|
(defcustom phobos-registry-root "https://code.dlang.org"
|
||||||
"Root URL of the D package registry used with `describe-dub-package'."
|
"Root URL of the D package registry used with `describe-dub-package'."
|
||||||
:group 'phobos
|
|
||||||
:type 'string)
|
:type 'string)
|
||||||
|
|
||||||
(defun phobos--visit (&rest format-args)
|
(defun phobos--visit (&rest format-args)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue