Hi,
When I type in a function say "(format" and press blank space there is a hint in the *Minibuf-0* and that's fine. When I type socket:socket-connect a new buffer *Slime Note* opens and shifts my windows layout. Is it possible to prevent *Slime Note* from opening so all the hints would go to minibuffer? Why different functions hints behave differently?
Thanks, Andrew
__________________________________ Do you Yahoo!? Make Yahoo! your home page http://www.yahoo.com/r/hs
Andrew Stebakov astebakov@yahoo.com writes:
Is it possible to prevent *Slime Note* from opening so all the hints would go to minibuffer?
Try to redefine slime-message like so:
(defun slime-message (format &rest args) (apply 'message format args))
You can also try to use the typeout window. Type M-x slime-ensure-typeout-frame and long messages will be displayed in that frame. (Use (slime-setup :typeout-frame t) in your .emacs to create the typeout window at each startup.)
Why different functions hints behave differently?
Because the message for the second function doesn't fit in a single line. slime-message opens the *Slime Note* so that you can see the entire message an not only the first line.
Helmut.