-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
drawing wrapped lines in REPL #24
Comments
This is unfortunately a bug in Emacs, I already reported it. |
Is there any quick fix for this? |
I don't know, one would have to dig into the terminal code. Maybe alternative terminals packages in Emacs don't have this problem, or would be more willing to fix this. |
Thanks for reporting the bug upstream! In case this may be of any help to anyone (maybe it'll work for you too @hcarlsoo?): I was having issues with this with long paths. It would make the repl so messy that I had to kill the session. Breaking the string representing the path and concatenating the fragments is working well as a workaround for me. Example: file = string("../../xxxx/xxxx/xxxxxxxx/",
"xxxxxx/xxxxxx/xxxxxx/xxxxx.csv") or file = "../../xxxx/xxxx/xxxxxxxx/" *
"xxxxxx/xxxxxx/xxxxxx/xxxxx.csv" Note: There is no issue when the reply is printing wrapped lines. It is only in input (whether typed directly in it or sent from julia-mode) that it was messing everything up. So after running the above, I can print |
The vterm backend doesn't have this problem. All the more reason to get #51 in! |
When typing in the REPL, as soon as the line wraps around, it starts "gobbling up" lines above. Every time I type another character, it re-prints everything on the wrapped part on a new line, instead of re-writing the wrapped part:
This is with:
The text was updated successfully, but these errors were encountered: