sagemath / sage-shell-mode

Emacs front end for SageMath
GNU General Public License v3.0
98 stars 16 forks source link

cannot move around in the buffer while sage is printing stuff #19

Closed mantepse closed 7 years ago

mantepse commented 7 years ago

Consider the following silly program:

i = 2
while i<100:
    i = next_prime(i)
    print i

I have frequently programs which output a lot, and take a long time to do that - but I want them to finish.

However, while the program is working, I like to go around in the buffer and read stuff. Unfortunately, this is currently not possible in sage-shell-mode.

stakemori commented 7 years ago

I just fixed this in 09b067b63c75d9ea97bfaf847d5e41b6b41f38d9. It is not merged to master yet. I will test it for a while. If it is OK, then I will merge it to mater later. Thanks for reporting.

stakemori commented 7 years ago

I just merged the fix to master. Thanks for reporting.