Skip to content

Commit

Permalink
[lldb] Change default value of dwim-print-verbosity setting
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kastiglione committed Mar 8, 2023
1 parent e0ecc32 commit 632c396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/source/Core/CoreProperties.td
Expand Up @@ -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.">;
}

0 comments on commit 632c396

Please sign in to comment.