Hi David, David Ponce writes: > diff --git a/installs/emacs/lisp/mouse.el b/home/dponce/emacs.d/mouse.el > index 795b4da..47a7f20 100644 > --- a/installs/emacs/lisp/mouse.el > +++ b/home/dponce/emacs.d/mouse.el > @@ -2577,7 +2577,10 @@ tooltips. If this is t, it shows the entire text dragged in a > tooltip. If this is an integer (as with the default value of > 256), it will show that many characters of the dragged text in > a tooltip." > - :type 'integer > + :type '(choice > + (const :tag "Do not show tooltips" nil) > + (const :tag "Show the entire text dragged" t) > + (integer :tag "Show that many characters of the dragged text" 256)) Thanks for the bug report. I think these should be made shorter to better fit in the customize buffer. I also found a bug where if you set this option to 0, the text is incorrectly shown in full. How about the below patch? Best regards, Stefan Kangas