[racket-users] [DrRacket] Is there a way to go to last edit location?

2020-10-09 Thread Rock Nie
Hi, When I am using DrRacket recently, I often find myself wanting to go back to the last edit location which I can do in other editors. However, I did not find a similar function in DrRacket. Is there a way to do this? With a plugin maybe? Rock -- You received this message because you are subs

[racket-users] Re: Output out of order when using system procedure

2020-05-20 Thread Rock Nie
n it > as a subprocess, the standard output is a pipe and it is buffered. > > This is not Racket specific, you would get the same problem if you ran > "os.system("test.py")" in another python program. > > Alex. > > On Wednesday, May 20, 2020 at 4:15:02 PM UTC+8,

[racket-users] Re: Output out of order when using system procedure

2020-05-20 Thread Rock Nie
This only happens in DrRacket. On Wednesday, May 20, 2020 at 1:16:44 PM UTC+8, Rock Nie wrote: > > I am running the system procedure in drracket's interactive window > (system "test.py") > > where test.py is > #!/home/utils/Python-3.8.0/bin/python3 > imp

[racket-users] Output out of order when using system procedure

2020-05-19 Thread Rock Nie
I am running the system procedure in drracket's interactive window (system "test.py") where test.py is #!/home/utils/Python-3.8.0/bin/python3 import os print("Running cmd: date1") print("Running cmd: date2") os.system("date") print("Running cmd: date3") os.system("date") and the output is Tue Ma