You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this, that single-character addition does indeed fix the "disappearing prompt" problem that's been troubling me! I note that an artefact of this is that there are now two spaces ␣ after the prompt: prompt>␣␣. A quick hack that fixes this is to remove the trailing space from line 1863 and adding it to line 1866 in the current HEAD revision on master appears to fix both problems:
Do I have a solution?
Yes
Details
Setting self.prompt to a single whitespace
self.prompt = ' '
instead of empty string
self.prompt = ''
in
line 1859
ofrshell/main.py
fixes the issue completely on OSX
The text was updated successfully, but these errors were encountered: