问题
我无法弄清楚如何设置VSCode在调试时正确显示Rust类型。即使我将"sourceLanguages": ["rust"]
添加到launch.json中,每个变量都被称为C类型。
我当前的设置
这是launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"sourceLanguages": ["rust"],
"name": "main",
"program": "target/debug/chip8-emulator",
"args": ["/home/alex/Downloads/chip8_roms/PONG"],
"cwd": "${workspaceRoot}"
}
]
}
我还需要配置其他内容以使类型的可视化正常工作吗?