atom-community / atom-community/atom-script

Output console updates only AFTER the script has been run

Open
#425 10 comments 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
730
Forks
264
PR merge metrics
No merged PRs in 30d

Description

The bottom console, which shows the program output will only update itself AFTER the program has terminated. Instead, it would be better if it showed the new output whenever the program outputs something.

This has been tested with the following python script:

```
import time
print('start')
time.sleep(5)
print('stop')
```

After 5 seconds, the bottom console will output

```
start
stop
```

Instead, the 'start' should be printed immediately.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.