emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/cider 23ccdf9ec3: Fix custom-declare-variable wider than 8


From: ELPA Syncer
Subject: [nongnu] elpa/cider 23ccdf9ec3: Fix custom-declare-variable wider than 80 chars warning
Date: Mon, 2 May 2022 02:58:02 -0400 (EDT)

branch: elpa/cider
commit 23ccdf9ec3fedcc47016b2abb7f985b5867a8156
Author: ikappaki <ikappaki@users.noreply.github.com>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Fix custom-declare-variable wider than 80 chars warning
---
 cider-debug.el        | 14 ++++++++------
 cider-eldoc.el        |  2 +-
 cider-eval.el         |  3 ++-
 cider-mode.el         |  6 ++++--
 cider-repl-history.el |  3 ++-
 cider.el              |  3 ++-
 nrepl-client.el       |  4 +++-
 7 files changed, 22 insertions(+), 13 deletions(-)

diff --git a/cider-debug.el b/cider-debug.el
index 39acb5120b..a916d87105 100644
--- a/cider-debug.el
+++ b/cider-debug.el
@@ -205,13 +205,15 @@ Can be toggled at any time with 
`\\[cider-debug-toggle-locals]'."
     (?t "trace" "trace")
     (?q "quit" "quit"))
   "A list of debugger command specs.
-Specs are in the format (KEY COMMAND-NAME DISPLAY-NAME?)
-where KEY is a character which is mapped to the command
-COMMAND-NAME is a valid debug command to be passed to the cider-nrepl 
middleware
-DISPLAY-NAME is the string displayed in the debugger overlay
 
-If DISPLAY-NAME is nil, that command is hidden from the overlay but still 
callable.
-The rest of the commands are displayed in the same order as this list."
+Specs are in the format (KEY COMMAND-NAME DISPLAY-NAME?)  where KEY is a
+character which is mapped to the command COMMAND-NAME is a valid debug
+command to be passed to the cider-nrepl middleware DISPLAY-NAME is the
+string displayed in the debugger overlay
+
+If DISPLAY-NAME is nil, that command is hidden from the overlay but still
+callable.  The rest of the commands are displayed in the same order as this
+list."
   :type '(alist :key-type character
                 :value-type (list
                              (string :tag "command name")
diff --git a/cider-eldoc.el b/cider-eldoc.el
index f0282721bd..8058261fe4 100644
--- a/cider-eldoc.el
+++ b/cider-eldoc.el
@@ -45,7 +45,7 @@
   "Extra commands to be added to eldoc's safe commands list.")
 
 (defcustom cider-eldoc-max-num-sexps-to-skip 30
-  "The maximum number of sexps to skip while searching the beginning of 
current sexp."
+  "Max number of sexps to skip while searching the beginning of current sexp."
   :type 'integer
   :group 'cider
   :package-version '(cider . "0.10.1"))
diff --git a/cider-eval.el b/cider-eval.el
index 0b1ec41611..c25fe4768f 100644
--- a/cider-eval.el
+++ b/cider-eval.el
@@ -1022,7 +1022,8 @@ That's set by commands like 
`cider-eval-last-sexp-in-context'.")
 
 
 (defun cider--guess-eval-context ()
-  "Return context for `cider--eval-in-context' by extracting all parent let 
bindings."
+  "Return context for `cider--eval-in-context'.
+This is done by extracting all parent let bindings."
   (save-excursion
     (let ((res ""))
       (condition-case nil
diff --git a/cider-mode.el b/cider-mode.el
index 14b1cdeeef..d8c8f34ba4 100644
--- a/cider-mode.el
+++ b/cider-mode.el
@@ -622,7 +622,8 @@ The value can also be t, which means to font-lock as much 
as possible."
   :package-version '(cider . "0.10.0"))
 
 (defcustom cider-font-lock-reader-conditionals t
-  "Apply font-locking to unused reader conditional expressions depending on 
the buffer CIDER connection type."
+  "Apply font-locking to unused reader conditional expressions.
+The result depends on the buffer CIDER connection type."
   :type 'boolean
   :group 'cider
   :package-version '(cider . "0.15.0"))
@@ -978,7 +979,8 @@ SYM and INFO is passed to `cider-docview-render'"
      (buffer-substring-no-properties (point-min) (1- (point))))))
 
 (defcustom cider-use-tooltips t
-  "If non-nil, CIDER displays mouse-over tooltips, as well as the `help-echo' 
mechanism."
+  "If non-nil, CIDER displays mouse-over tooltips.
+It does this as well as the `help-echo' mechanism."
   :group 'cider
   :type 'boolean
   :package-version '(cider "0.12.0"))
diff --git a/cider-repl-history.el b/cider-repl-history.el
index 566beec01a..fc7df8b5d7 100644
--- a/cider-repl-history.el
+++ b/cider-repl-history.el
@@ -180,7 +180,8 @@ Setting this variable to nil means no limit."
   :package-version '(cider . "0.15.0"))
 
 (defcustom cider-repl-history-display-duplicate-highest t
-  "When `cider-repl-history-display-duplicates' is nil, then display highest 
(most recent) duplicate items in the command history."
+  "If non-nil, then display most recent duplicate items in the command history.
+Only takes effect when `cider-repl-history-display-duplicates' is nil."
   :type 'boolean
   :package-version '(cider . "0.15.0"))
 
diff --git a/cider.el b/cider.el
index c8db803ead..95ac9ce74b 100644
--- a/cider.el
+++ b/cider.el
@@ -297,7 +297,8 @@ This variable is used by `cider-connect'."
   :package-version '(cider . "0.9.0"))
 
 (defcustom cider-inject-dependencies-at-jack-in t
-  "When nil, do not inject repl dependencies (most likely nREPL middlewares) 
at `cider-jack-in' time."
+  "When nil, do not inject repl dependencies at `cider-jack-in' time.
+The repl dependendcies are most likely to be nREPL middlewares."
   :type 'boolean
   :safe #'booleanp
   :version '(cider . "0.11.0"))
diff --git a/nrepl-client.el b/nrepl-client.el
index 92df9e9562..5ea6610ec0 100644
--- a/nrepl-client.el
+++ b/nrepl-client.el
@@ -111,7 +111,9 @@
   :type 'boolean)
 
 (defcustom nrepl-use-ssh-fallback-for-remote-hosts nil
-  "If non-nil, attempt to connect via ssh to remote hosts when unable to 
connect directly."
+  "If non-nil, Use ssh as a fallback to connect to remote hosts.
+It will attempt to connect via ssh to remote hosts when unable to connect
+directly."
   :type 'boolean)
 
 (defcustom nrepl-sync-request-timeout 10



reply via email to

[Prev in Thread] Current Thread [Next in Thread]