Tool | Edirot Guide
Notes editor environment
VScode for Java
Add Java jdk in vscode in setting.json
"java.configuration.runtimes": [
{
"name": "JavaSE-17",
"path": "/usr/bin/java"
},
]
- Stop Java auto build
- disable
java.autobuild.enabled
- disable
-
Hide Run | Debug in editor
Editor: Code Lens
Controls whether the editor shows CodeLens. - Hide Inlay Hints
Editor › Inlay Hints: Enabled
Enables the inlay hints in the editor.
on -> off
[Vscode Debugger for C/C++ using GDB]
- Install
gdb
in Linux
{
"name": "C++ Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/target.out",
"stopAtEntry": false,
"customLaunchSetupCommands": [
{ "text": "target-run", "description": "run target", "ignoreFailures": false }
],
"launchCompleteCommand": "exec-run",
"linux": {
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb"
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb",
"miDebuggerPath": "C:\\MinGw\\bin\\gdb.exe"
}
}
Last Edit
09-29-2023 12:22