Open jloow opened 2 years ago
Yeah just noticed that too... do you have a fork we can use? Or any tips on how to adjust this ourselves?
Sorry for the late reply. I just put the new alias definition in my init file after loading the package. Alternatively you could define the missing function yourself e.g.
(defun () racket--repl-show-and-move-to-end
(display-buffer racket-repl-buffer-name)
(save-selected-window
(select-window (get-buffer-window racket-repl-buffer-name))
(comint-show-maximum-output))
Note that I haven't used eval-in-repl
in over a year so I'm unsure if this still works. I know one issue is that emacs complains about not being able to find the buffer the first time the function is run.
eval-in-repl-racket.el
uses the functionracket--repl-show-and-move-to-end
fromracket-mode
. However, this function is no longer available. I'm not sure what it has been replaced with, but the issue can be fixed by replacing the function with it's previous implementation. That isCan be rewritten as
Probably not the prettiest solution but it fixes the issue.