Variable: gud-tooltip-display

gud-tooltip-display is a customizable variable defined in gud.el.gz.

Value

((eq (tooltip-event-buffer gud-tooltip-event)
     (marker-buffer gud-overlay-arrow-position)))

Documentation

List of forms determining where GUD tooltips are displayed.

Forms in the list are combined with AND. The default is to display only tooltips in the buffer containing the overlay arrow.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defcustom gud-tooltip-display
  '((eq (tooltip-event-buffer gud-tooltip-event)
	(marker-buffer gud-overlay-arrow-position)))
  "List of forms determining where GUD tooltips are displayed.

Forms in the list are combined with AND.  The default is to display
only tooltips in the buffer containing the overlay arrow."
  :type 'sexp
  :risky t
  :group 'tooltip)