[Lldb-commits] [lldb] 632c396 - [lldb] Change default value of dwim-print-verbosity setting

Dave Lee via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 8 11:11:36 PST 2023


Author: Dave Lee
Date: 2023-03-08T11:10:50-08:00
New Revision: 632c396499eb4f6f7a36ba0246ba57e011357a55

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

LOG: [lldb] Change default value of dwim-print-verbosity setting

Reduce the default value of `dwim-print-verbosity` to `eDWIMPrintVerbosityNone`.

Users who wish to see the rewritten expression can set this setting manually. Not unlike
`interpreter.expand-regex-aliases`.

Differential Revision: https://reviews.llvm.org/D145529

Added: 
    

Modified: 
    lldb/source/Core/CoreProperties.td

Removed: 
    


################################################################################
diff  --git a/lldb/source/Core/CoreProperties.td b/lldb/source/Core/CoreProperties.td
index fc664be63f429..62729923f366b 100644
--- a/lldb/source/Core/CoreProperties.td
+++ b/lldb/source/Core/CoreProperties.td
@@ -193,7 +193,7 @@ let Definition = "debugger" in {
     Desc<"When displaying suggestion in a color-enabled terminal, use the ANSI terminal code specified in this format immediately after the suggestion.">;
   def DWIMPrintVerbosity: Property<"dwim-print-verbosity", "Enum">,
     Global,
-    DefaultEnumValue<"eDWIMPrintVerbosityExpression">,
+    DefaultEnumValue<"eDWIMPrintVerbosityNone">,
     EnumValues<"OptionEnumValues(g_dwim_print_verbosities)">,
     Desc<"The verbosity level used by dwim-print.">;
 }


        


More information about the lldb-commits mailing list