File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### New Features
6
6
7
+ * Option ` cider-use-tooltips ` controls the display of mouse-over tooltips.
7
8
* ` f ` key reruns failed tests on the test-report buffer.
8
9
* ` g ` key reruns test at point on the test-report buffer.
9
10
* Debugger now supports step-in.
Original file line number Diff line number Diff line change @@ -651,11 +651,18 @@ before point."
651
651
" [`']" " \\ \\= \\ &"
652
652
(buffer-substring-no-properties (point-min ) (1- (point ))))))
653
653
654
+ (defcustom cider-use-tooltips t
655
+ " If non-nil, CIDER displays mouse-over tooltips."
656
+ :group 'cider
657
+ :type 'boolean
658
+ :package-version '(cider " 0.12.0" ))
659
+
654
660
(defun cider--help-echo (_ obj pos )
655
661
" Return the help-echo string for OBJ at POS.
656
662
See \( info \" (elisp) Special Properties\" )"
657
663
(while-no-input
658
- (when (and (bufferp obj) (cider-connected-p))
664
+ (when (and (bufferp obj) (cider-connected-p)
665
+ cider-use-tooltips)
659
666
(with-current-buffer obj
660
667
(ignore-errors
661
668
(save-excursion
You can’t perform that action at this time.
0 commit comments