esv.el: add newlines between defcustoms

This commit is contained in:
Jeremy Baxter 2024-07-20 19:44:24 +12:00
parent a2934872ba
commit b4358c84f9

4
esv.el
View file

@ -43,18 +43,22 @@
"Whether to close an existing `esv' buffer if one already exists."
:type 'boolean
:group 'esv)
(defcustom esv-columns 72
"Length of each line output by `esv'."
:type 'natnum
:group 'esv)
(defcustom esv-mode-hook nil
"Hook run after entering `esv-mode'."
:type 'hook
:group 'esv)
(defcustom esv-process "esv"
"Name of the process created by `esv'."
:type 'string
:group 'esv)
(defcustom esv-program "esv"
"Path to or name of the program started by `esv'."
:type 'string