[Lldb-commits] [PATCH] D145529: [lldb] Change default value of dwim-print-verbosity setting
Dave Lee via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 7 16:00:18 PST 2023
kastiglione created this revision.
kastiglione added a reviewer: aprantl.
Herald added a project: All.
kastiglione requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
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`.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D145529
Files:
lldb/source/Core/CoreProperties.td
Index: lldb/source/Core/CoreProperties.td
===================================================================
--- lldb/source/Core/CoreProperties.td
+++ lldb/source/Core/CoreProperties.td
@@ -193,7 +193,7 @@
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.">;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145529.503172.patch
Type: text/x-patch
Size: 672 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230308/22efa0cb/attachment.bin>
More information about the lldb-commits
mailing list