Skip to content

Commit f38ebc7

Browse files
committed
[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 (cherry picked from commit 632c396)
1 parent 094869a commit f38ebc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Core/CoreProperties.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ let Definition = "debugger" in {
227227
Desc<"When displaying suggestion in a color-enabled terminal, use the ANSI terminal code specified in this format immediately after the suggestion.">;
228228
def DWIMPrintVerbosity: Property<"dwim-print-verbosity", "Enum">,
229229
Global,
230-
DefaultEnumValue<"eDWIMPrintVerbosityExpression">,
230+
DefaultEnumValue<"eDWIMPrintVerbosityNone">,
231231
EnumValues<"OptionEnumValues(g_dwim_print_verbosities)">,
232232
Desc<"The verbosity level used by dwim-print.">;
233233
}

0 commit comments

Comments
 (0)