Skip to content

Commit 23ccdf9

Browse files
ikappakibbatsov
authored andcommitted
Fix custom-declare-variable wider than 80 chars warning
1 parent af1ab56 commit 23ccdf9

File tree

7 files changed

+22
-13
lines changed

7 files changed

+22
-13
lines changed

cider-debug.el

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -205,13 +205,15 @@ Can be toggled at any time with `\\[cider-debug-toggle-locals]'."
205205
(?t "trace" "trace")
206206
(?q "quit" "quit"))
207207
"A list of debugger command specs.
208-
Specs are in the format (KEY COMMAND-NAME DISPLAY-NAME?)
209-
where KEY is a character which is mapped to the command
210-
COMMAND-NAME is a valid debug command to be passed to the cider-nrepl middleware
211-
DISPLAY-NAME is the string displayed in the debugger overlay
212208
213-
If DISPLAY-NAME is nil, that command is hidden from the overlay but still callable.
214-
The rest of the commands are displayed in the same order as this list."
209+
Specs are in the format (KEY COMMAND-NAME DISPLAY-NAME?) where KEY is a
210+
character which is mapped to the command COMMAND-NAME is a valid debug
211+
command to be passed to the cider-nrepl middleware DISPLAY-NAME is the
212+
string displayed in the debugger overlay
213+
214+
If DISPLAY-NAME is nil, that command is hidden from the overlay but still
215+
callable. The rest of the commands are displayed in the same order as this
216+
list."
215217
:type '(alist :key-type character
216218
:value-type (list
217219
(string :tag "command name")

cider-eldoc.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"Extra commands to be added to eldoc's safe commands list.")
4646

4747
(defcustom cider-eldoc-max-num-sexps-to-skip 30
48-
"The maximum number of sexps to skip while searching the beginning of current sexp."
48+
"Max number of sexps to skip while searching the beginning of current sexp."
4949
:type 'integer
5050
:group 'cider
5151
:package-version '(cider . "0.10.1"))

cider-eval.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,8 @@ That's set by commands like `cider-eval-last-sexp-in-context'.")
10221022

10231023

10241024
(defun cider--guess-eval-context ()
1025-
"Return context for `cider--eval-in-context' by extracting all parent let bindings."
1025+
"Return context for `cider--eval-in-context'.
1026+
This is done by extracting all parent let bindings."
10261027
(save-excursion
10271028
(let ((res ""))
10281029
(condition-case nil

cider-mode.el

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,8 @@ The value can also be t, which means to font-lock as much as possible."
622622
:package-version '(cider . "0.10.0"))
623623

624624
(defcustom cider-font-lock-reader-conditionals t
625-
"Apply font-locking to unused reader conditional expressions depending on the buffer CIDER connection type."
625+
"Apply font-locking to unused reader conditional expressions.
626+
The result depends on the buffer CIDER connection type."
626627
:type 'boolean
627628
:group 'cider
628629
:package-version '(cider . "0.15.0"))
@@ -978,7 +979,8 @@ SYM and INFO is passed to `cider-docview-render'"
978979
(buffer-substring-no-properties (point-min) (1- (point))))))
979980

980981
(defcustom cider-use-tooltips t
981-
"If non-nil, CIDER displays mouse-over tooltips, as well as the `help-echo' mechanism."
982+
"If non-nil, CIDER displays mouse-over tooltips.
983+
It does this as well as the `help-echo' mechanism."
982984
:group 'cider
983985
:type 'boolean
984986
:package-version '(cider "0.12.0"))

cider-repl-history.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ Setting this variable to nil means no limit."
180180
:package-version '(cider . "0.15.0"))
181181

182182
(defcustom cider-repl-history-display-duplicate-highest t
183-
"When `cider-repl-history-display-duplicates' is nil, then display highest (most recent) duplicate items in the command history."
183+
"If non-nil, then display most recent duplicate items in the command history.
184+
Only takes effect when `cider-repl-history-display-duplicates' is nil."
184185
:type 'boolean
185186
:package-version '(cider . "0.15.0"))
186187

cider.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,8 @@ This variable is used by `cider-connect'."
297297
:package-version '(cider . "0.9.0"))
298298

299299
(defcustom cider-inject-dependencies-at-jack-in t
300-
"When nil, do not inject repl dependencies (most likely nREPL middlewares) at `cider-jack-in' time."
300+
"When nil, do not inject repl dependencies at `cider-jack-in' time.
301+
The repl dependendcies are most likely to be nREPL middlewares."
301302
:type 'boolean
302303
:safe #'booleanp
303304
:version '(cider . "0.11.0"))

nrepl-client.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@
111111
:type 'boolean)
112112

113113
(defcustom nrepl-use-ssh-fallback-for-remote-hosts nil
114-
"If non-nil, attempt to connect via ssh to remote hosts when unable to connect directly."
114+
"If non-nil, Use ssh as a fallback to connect to remote hosts.
115+
It will attempt to connect via ssh to remote hosts when unable to connect
116+
directly."
115117
:type 'boolean)
116118

117119
(defcustom nrepl-sync-request-timeout 10

0 commit comments

Comments
 (0)