Skip to content

Commit b662ffa

Browse files
fix: start tracking lldb debug helper
1 parent de0fcc3 commit b662ffa

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

Diff for: .gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule ".vscode/rust-prettifier-for-lldb"]
2+
path = .vscode/rust-prettifier-for-lldb
3+
url = https://github.com/cmrschwarz/rust-prettifier-for-lldb

Diff for: .prettierignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.git
2-
.github/actions/
2+
.mypy_cache
3+
.vscode/rust-prettifier-for-lldb
34
CHANGELOG.md
45
profiling
56
reports

Diff for: .vscode/rust-prettifier-for-lldb

Diff for: .vscode/rust_prettifier_for_lldb.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./rust-prettifier-for-lldb/rust_prettifier_for_lldb.py

Diff for: .vscode/settings.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@
44
"rust-analyzer.debug.engineSettings": {
55
"lldb": {
66
"internalConsoleOptions": "openOnSessionStart",
7-
"terminal": "console"
7+
"terminal": "console",
8+
"expressions": "simple",
9+
"preRunCommands": [
10+
"command script import ${workspaceFolder}/.vscode/rust_prettifier_for_lldb.py"
11+
]
812
}
913
},
10-
"rust-analyzer.debug.openDebugPane": true,
1114
"rust-analyzer.runnables.extraEnv": {
1215
"RUST_LOG": "DEBUG,rust_seed=TRACE"
1316
}

0 commit comments

Comments
 (0)