Almenon
Almenon
Pressing F1 does nothing. The function that is supposed to be called, restartExec, is never called. Pressing F4 brings up launchpad instead of toggling the real-time eval. Currently I am...
Breakpoint line style is only applied when you create a new line after the last line, but not if you create a new line in the middle of the breakpoint...
Not sure why this is the case. I do label: require("electron").app.getName() and I have "arepl" as the name in package.json so the first item in the file menu should be...
see https://www.npmjs.com/package/electron-builder. I already have this in the works with the auto-update branch.
Add new submenu item for auto-download of update. Change old submenu item to "release notes". Old submenu item should link back to the releases page for release notes. If you...
When an error appears there something should appear on the corresponding line number. For example, an error icon in the gutter.
**Describe the bug** In arepl v1.0.24 it gets the following error: ``` Traceback (most recent call last): line 1, in io.UnsupportedOperation: not writable ``` **To Reproduce** ```python print('hi', file=open(2)) ```...
It's annoying to have to constantly re-expand a variable if it is hidden deep into the layers of nested JSON. I have a default expand setting but it is for...
Each run should be identical assuming the same code, but the logging output repeats. ```python import logging import sys root = logging.getLogger() root.setLevel(logging.DEBUG) handler = logging.StreamHandler(sys.stdout) formatter = logging.Formatter('%(asctime)s -...