Thank you @dinkonin for reporting this! It must be a regression from what we pushed yesterday with the help of @phikal. I will investigate it right away.
But maybe there are side-effects. One I noticed is that depending on how fast I type, I get this error:
Error running timer ‘mct--live-completions’: (error "#<window 347> is not a live window")
This happens when I type quickly C-x C-f and then, say, ~/D for "Documents", "Downloads", "Desktop". I type that slowly, so that the Completions' buffer shows up, then there is no error.
But maybe there are side-effects. One I noticed is that depending on how fast I type, I get this error:
Error running timer ‘mct--live-completions’: (error "#<window 347> is not a live window")
This happens when I type quickly C-x C-f and then, say, ~/D for
"Documents", "Downloads", "Desktop". I type that slowly, so that the
Completions' buffer shows up, then there is no error.
Philip just sent a patch which should fix this issue:
mct.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)diff --git a/mct.el b/mct.elindex fe7f25d..e0651bf 100644--- a/mct.el+++ b/mct.el@@ -121,7 +121,7 @@ (defcustom mct-completion-passlist nil :group 'mct) (defcustom mct-display-buffer-action- '((display-buffer-at-bottom))+ '((display-buffer-reuse-window display-buffer-at-bottom)) "The action used to display the Completions' buffer. The value has the form (FUNCTION . ALIST), where FUNCTIONS is
[ I even have this in my dotemacs---should have known better. ]
At any rate, the error with the timer still exists. We shall consider that separately and I'm closing this now.
Thanks again @dinkonin for reporting this and sorry for the bad first experience :)
Feel welcome to suggest any ideas or send patches (if I remember correctly, you have signed the FSF papers). These are early days so now is the right time to make any big changes in the overall direction.
Strangely I cannot reproduce the timer error on my side.
Maybe I misconfigured something else on my end. Will continue testing.