slime / slime

The Superior Lisp Interaction Mode for Emacs
http://common-lisp.net/project/slime/
1.9k stars 334 forks source link

slime-fuzzzy-complete-symbol and emacs 27 #580

Open admich opened 4 years ago

admich commented 4 years ago

With emacs 27 (in emacs 26 all is right) when I complete with slime-fuzzy-complete-symbol at the end of the completion process the new window where the buffer *Fuzzy Completion* was displayed is not deleted and the old window layout is not restored

luismbo commented 4 years ago

What SLIME version?

admich commented 4 years ago

v2.24 the version shipped with the last quicklisp dists 2020-07-15

admich commented 4 years ago

Today I update quicklisp to dist 2020-09-25 and so now I have slime v2.26 but I still have the problem.

ivan4th commented 3 years ago

Same here (v2.26, Emacs 27.1 on Mac). Apparently, slime-fuzzy-window-configuration-change is invoked even if the window configuration doesn't change while the fuzzy completions are active.

(defun slime-fuzzy-window-configuration-change ()
  nil)

works as a temporary workaround.