-
-
Notifications
You must be signed in to change notification settings - Fork 738
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
display bug , after some commands ,there will be a wrong display #1102
Comments
for example, i am usingthe following command
then the out put will be
print *( |
It seems like the problem comes from the |
diff --git a/gef.py b/gef.py
index ce95e20..4d49b2d 100644
--- a/gef.py
+++ b/gef.py
@@ -11234,7 +11234,7 @@ class GefRemoteSessionManager(GefSessionManager):
if self == GefRemoteSessionManager.RemoteMode.RR:
return Color.boldify("(rr) ")
if self == GefRemoteSessionManager.RemoteMode.GDBSERVER:
- return Color.boldify("(remote) ")
+ return "(remote) "
raise AttributeError("Unknown value")
def __init__(self, host: str, port: int, pid: int =-1, qemu: Optional[pathlib.Path] = None) -> None: |
Hm, our |
It is not related to the terminal emulator but to the readline library (which is used by gdb). |
That's exactly what the \033[xxxm is supposed to do. I've dealt with this before and never see those codes. |
I think it's |
I think you don't understand what the issue is. You can check this thread to understand: |
I understand the issue. I have |
## Description Fix bug described in #1102
Closing as #1103 was merged |
GEF+GDB version
Operating System
No response
Describe the issue you encountered
see the picture
Do you read the docs and look at previously closed issues/PRs for similar cases?
No
Architecture impacted
Describe your issue. Without a proper reproduction step-by-step, your issue will be ignored.
start arm64 qemu
gdb-multiarch
use some command , it wil be ok to see the issue
Minimalist test case
Use this field for a minimal code to compile and spot the issue:
You can also provide a Dockerfile if you prefer
Additional context?
The text was updated successfully, but these errors were encountered: