Open Arbitrageur opened 10 years ago
I've also experienced the same problem. One hack that worked for me was to install the Wolfram Kernel on Jupyter and setq wolfram-program
to jupyter console using the wolfram kernel.
I've been bitten by a similar problem (cursor going to the right margin) in April 2023 (a bit less than 10 years after the initial report !) with the Wolfram Engine 13.2. The workaround is to filter tre prompt. Place this :
(add-hook
'inferior-wolfram-mode-hook
(lambda ()
(add-hook
'comint-preoutput-filter-functions
(lambda (x)
(concat (string-trim-right x) " "))
t t)))
in the package's initialization code.
HTH,
Hi!
First of all, I'm really happy to find this package!
However, there's a problem.
I found that the cursor in the inferior mode is always at center.
I tried to fix it by changing 'coming-prompt-regex' but I failed..