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
Describe the bug
multi-line commands in gdb log are shown with a leading > which breaks its highlighting; also: after the >end the highlighting does not work any more and lastly: gdb prompts are colored, not sure if that's possible but don't highlight those (or using a dark gray) would be useful, at least the free standing " a " should not be colored.
Expected behavior
similar highlighting to gdb syntax
log:
(gdb) continue
Continuing.
^C
Program received signal SIGINT, Interrupt.
0x9affb062b0f7 in testme () from /some/lib.so
(gdb) commands
Type commands for breakpoint(s) 4, one per line.
End with a line saying just "end".
>silent
>break somefunc
>end
(gdb) break test.c:1098
Breakpoint 5 at 0x7fffb062b0f7: file /tmp/test.c, line 1098.
(gdb) c
Continuing.
current highlighting:
as script:
continue
commands
silent
break somefunc
end
break test.c:1098
c
The text was updated successfully, but these errors were encountered:
Describe the bug
multi-line commands in gdb log are shown with a leading
>
which breaks its highlighting; also: after the >end the highlighting does not work any more and lastly: gdb prompts are colored, not sure if that's possible but don't highlight those (or using a dark gray) would be useful, at least the free standing " a " should not be colored.Expected behavior
log:
current highlighting:

as script:
The text was updated successfully, but these errors were encountered: