[Lldb-commits] [lldb] c4093db - [lldb] Color the current PC marker

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 24 12:51:51 PST 2020


Author: Jonas Devlieghere
Date: 2020-02-24T12:51:01-08:00
New Revision: c4093db3dac4ef09fb175f4aa79c8a422da70771

URL: https://github.com/llvm/llvm-project/commit/c4093db3dac4ef09fb175f4aa79c8a422da70771
DIFF: https://github.com/llvm/llvm-project/commit/c4093db3dac4ef09fb175f4aa79c8a422da70771.diff

LOG: [lldb] Color the current PC marker

Differential revision: https://reviews.llvm.org/D75073

Added: 
    

Modified: 
    lldb/source/Core/CoreProperties.td

Removed: 
    


################################################################################
diff  --git a/lldb/source/Core/CoreProperties.td b/lldb/source/Core/CoreProperties.td
index bfb8291ba4b2..4ae1e9f10e6c 100644
--- a/lldb/source/Core/CoreProperties.td
+++ b/lldb/source/Core/CoreProperties.td
@@ -22,7 +22,7 @@ let Definition = "debugger" in {
     Desc<"If true all confirmation prompts will receive their default reply.">;
   def DisassemblyFormat: Property<"disassembly-format", "FormatEntity">,
     Global,
-    DefaultStringValue<"{${function.initial-function}{${module.file.basename}`}{${function.name-without-args}}:\\\\n}{${function.changed}\\\\n{${module.file.basename}`}{${function.name-without-args}}:\\\\n}{${current-pc-arrow} }${addr-file-or-load}{ <${function.concrete-only-addr-offset-no-padding}>}: ">,
+    DefaultStringValue<"{${function.initial-function}{${module.file.basename}`}{${function.name-without-args}}:\\\\n}{${function.changed}\\\\n{${module.file.basename}`}{${function.name-without-args}}:\\\\n}{${ansi.fg.yellow}${current-pc-arrow}${ansi.normal} }${addr-file-or-load}{ <${function.concrete-only-addr-offset-no-padding}>}: ">,
     Desc<"The default disassembly format string to use when disassembling instruction sequences.">;
   def FrameFormat: Property<"frame-format", "FormatEntity">,
     Global,


        


More information about the lldb-commits mailing list