Skip to content

Commit e265fc2

Browse files
cskkscbbatsov
authored andcommitted
[Fix #1782] Make mouse-over tooltip less intrusive (#1801)
Disable the tooltips when help-at-pt-display-when-idle is non-nil.
1 parent 9d43284 commit e265fc2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ the ns-browser.
4848
* [#1708](https://github.com/clojure-emacs/cider/issues/1708): Fix `cider-popup-buffer-display` when another frame is used for the error buffer.
4949
* [#1733](https://github.com/clojure-emacs/cider/pull/1733): Better error handling when no boot command is found in `exec-path`.
5050
* Fix orphaned nrepl-messages buffer after `cider-quit`.
51+
* [#1782](https://github.com/clojure-emacs/cider/issues/1782): Disable mouse-over tooltips when `help-at-pt-display-when-idle` is non-nil.
5152

5253
## 0.12.0 (2016-04-16)
5354

cider-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ before point."
668668
See \(info \"(elisp) Special Properties\")"
669669
(while-no-input
670670
(when (and (bufferp obj) (cider-connected-p)
671-
cider-use-tooltips)
671+
cider-use-tooltips (not help-at-pt-display-when-idle))
672672
(with-current-buffer obj
673673
(ignore-errors
674674
(save-excursion

0 commit comments

Comments
 (0)