You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `enable` prefix is a filler word which adds no additional
information. Rename the setting to `displayExtendedBacktrace`
Given that this setting was only introduced a month ago, and that there
has not been any release since then, I assume that usage is still rather
low. As such, it should be fine to not provide backwards-compatibility
workarounds.
Copy file name to clipboardExpand all lines: lldb/tools/lldb-dap/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ This binary is not packaged with the VS Code extension.
7
7
8
8
There are multiple ways to obtain this binary:
9
9
* build it from source (see [LLDB's build instructions](https://lldb.llvm.org/resources/build.html))
10
-
* download it one of the relase packages from the [LLVM release page](https://github.com/llvm/llvm-project/releases/). The `LLVM-19.1.0-{operating_system}.tar.xz` packages contain a prebuilt `lldb-dap` binary.
10
+
* download one of the relase packages from the [LLVM release page](https://github.com/llvm/llvm-project/releases/). The `LLVM-19.1.0-{operating_system}.tar.xz` packages contain a prebuilt `lldb-dap` binary.
11
11
* use the binary provided by your toolchain (for example `xcrun -f lldb-dap` on macOS) or contact your toolchain vendor to include it.
12
12
13
13
By default, the VS Code extension will expect to find `lldb-dap` in your `PATH`.
@@ -188,8 +188,8 @@ specific key/value pairs:
188
188
|**commandEscapePrefix** | string | | The escape prefix to use for executing regular LLDB commands in the Debug Console, instead of printing variables. Defaults to a back-tick (`\``). If it's an empty string, then all expression in the Debug Console are treated as regular LLDB commands.
189
189
|**customFrameFormat** | string | | If non-empty, stack frames will have descriptions generated based on the provided format. See https://lldb.llvm.org/use/formatting.html for an explanation on format strings for frames. If the format string contains errors, an error message will be displayed on the Debug Console and the default frame names will be used. This might come with a performance cost because debug information might need to be processed to generate the description.
190
190
|**customThreadFormat** | string | | Same as `customFrameFormat`, but for threads instead of stack frames.
191
+
|**displayExtendedBacktrace**|bool| | Enable language specific extended backtraces.
191
192
|**enableAutoVariableSummaries**|bool| | Enable auto generated summaries for variables when no summaries exist for a given type. This feature can cause performance delays in large projects when viewing variables.
192
-
|**enableDisplayExtendedBacktrace**|bool| | Enable language specific extended backtraces.
193
193
|**enableSyntheticChildDebugging**|bool| | If a variable is displayed using a synthetic children, also display the actual contents of the variable at the end under a [raw] entry. This is useful when creating sythetic child plug-ins as it lets you see the actual contents of the variable.
194
194
|**initCommands** |[string]| | LLDB commands executed upon debugger startup prior to creating the LLDB target.
195
195
|**preRunCommands** |[string]| | LLDB commands executed just before launching/attaching, after the LLDB target has been created.
Copy file name to clipboardExpand all lines: lldb/tools/lldb-dap/package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -268,7 +268,7 @@
268
268
"description": "Enable auto generated summaries for variables when no summaries exist for a given type. This feature can cause performance delays in large projects when viewing variables.",
269
269
"default": false
270
270
},
271
-
"enableDisplayExtendedBacktrace": {
271
+
"displayExtendedBacktrace": {
272
272
"type": "boolean",
273
273
"description": "Enable language specific extended backtraces.",
274
274
"default": false
@@ -393,7 +393,7 @@
393
393
"description": "Enable auto generated summaries for variables when no summaries exist for a given type. This feature can cause performance delays in large projects when viewing variables.",
394
394
"default": false
395
395
},
396
-
"enableDisplayExtendedBacktrace": {
396
+
"displayExtendedBacktrace": {
397
397
"type": "boolean",
398
398
"description": "Enable language specific extended backtraces.",
0 commit comments