Skip to content

Commit

Permalink
extend highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
JensDll committed Aug 12, 2023
1 parent ed282c9 commit 3d3e256
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion unix/.config/gdbdash/gdbdash/modules/registers.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ def get_value_32(self): # type: () -> str
)

def get_value_decimal(self): # type: () -> str
return f"{self.options['text-secondary']}|{RESET_COLOR} {self.value.format_string(format='d'):>21} "
return (
f"{self.color}|{RESET_COLOR} {self.value.format_string(format='d'):>21} "
)


class SegmentRegister(Register):
Expand Down

0 comments on commit 3d3e256

Please sign in to comment.