Skip to content

Commit 098ea96

Browse files
committed
Use ;; as the help banner's line prefix
1 parent b6ba380 commit 098ea96

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

cider-repl.el

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -311,38 +311,38 @@ client process connection. Unless NO-BANNER is non-nil, insert a banner."
311311
(defun cider-repl--help-banner ()
312312
"Generate the help banner."
313313
(substitute-command-keys
314-
"\n; ======================================================================
315-
; If you’re new to CIDER it is highly recommended to go through its
316-
; manual first. Type <M-x cider-view-manual> to view it.
317-
; In case you’re seeing any warnings you should consult the manual’s
318-
; \"Troubleshooting\" section.
319-
;
320-
; Here are few tips to get you started:
321-
;
322-
; * Press <\\[describe-mode]> to see a list of the keybindings available (this
323-
; will work in every Emacs buffer)
324-
; * Press <\\[cider-repl-handle-shortcut]> to quickly invoke some REPL command
325-
; * Press <\\[cider-switch-to-last-clojure-buffer]> to switch between the REPL and a Clojure file
326-
; * Press <\\[cider-find-var] to jump to the source of something (e.g. a var, a
327-
; Java method)
328-
; * Press <\\[cider-doc]> to view the documentation for something (e.g.
329-
; a var, a Java method)
330-
; * Enable `eldoc-mode' to display function & method signatures in the minibuffer.
331-
; * Print CIDER's refcard and keep it close to your keyboard.
332-
;
333-
; CIDER is super customizable - try <M-x customize-group cider> to
334-
; get a feel for this. If you’re thirsty for knowledge you should try
335-
; <M-x cider-drink-a-sip>.
336-
;
337-
; If you think you’ve encountered a bug (or have some suggestions for
338-
; improvements) use <M-x cider-report-bug> to report it.
339-
;
340-
; Above all else - don’t panic! In case of an emergency - procure
341-
; some (hard) cider and enjoy it responsibly!
342-
;
343-
; You can disable this message from appearing on start by setting
344-
; `cider-repl-display-help-banner' to nil.
345-
; ======================================================================
314+
"\n;; ======================================================================
315+
;; If you’re new to CIDER it is highly recommended to go through its
316+
;; manual first. Type <M-x cider-view-manual> to view it.
317+
;; In case you’re seeing any warnings you should consult the manual’s
318+
;; \"Troubleshooting\" section.
319+
;;
320+
;; Here are few tips to get you started:
321+
;;
322+
;; * Press <\\[describe-mode]> to see a list of the keybindings available (this
323+
;; will work in every Emacs buffer)
324+
;; * Press <\\[cider-repl-handle-shortcut]> to quickly invoke some REPL command
325+
;; * Press <\\[cider-switch-to-last-clojure-buffer]> to switch between the REPL and a Clojure file
326+
;; * Press <\\[cider-find-var] to jump to the source of something (e.g. a var, a
327+
;; Java method)
328+
;; * Press <\\[cider-doc]> to view the documentation for something (e.g.
329+
;; a var, a Java method)
330+
;; * Enable `eldoc-mode' to display function & method signatures in the minibuffer.
331+
;; * Print CIDER's refcard and keep it close to your keyboard.
332+
;;
333+
;; CIDER is super customizable - try <M-x customize-group cider> to
334+
;; get a feel for this. If you’re thirsty for knowledge you should try
335+
;; <M-x cider-drink-a-sip>.
336+
;;
337+
;; If you think you’ve encountered a bug (or have some suggestions for
338+
;; improvements) use <M-x cider-report-bug> to report it.
339+
;;
340+
;; Above all else - don’t panic! In case of an emergency - procure
341+
;; some (hard) cider and enjoy it responsibly!
342+
;;
343+
;; You can disable this message from appearing on start by setting
344+
;; `cider-repl-display-help-banner' to nil.
345+
;; ======================================================================
346346
"))
347347

348348
(defun cider-repl--insert-banner-and-prompt (buffer)

0 commit comments

Comments
 (0)