Christian Burger
ef07c3ac06
* using `get_wch()` now and mapping most of the function keys documented in `vterm_keycodes.h` (not num keypad) * there are still a lot of mappings from ncurses missing (in conjunction with modifier keys, related issue #11) * using mutex to make sure writing to terminal client is serialized
52 lines
1.9 KiB
JSON
52 lines
1.9 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "(gdb) start NCursesPtyApp",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/build/NCursesPtyApp",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}",
|
|
"environment": [],
|
|
"externalConsole": true,
|
|
"MIMode": "gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
},
|
|
{
|
|
"description": "Disassemblierungsvariante auf Intel festlegen",
|
|
"text": "-gdb-set disassembly-flavor intel",
|
|
"ignoreFailures": true
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "(gdb) attach to running NCursesPtyApp",
|
|
"type": "cppdbg",
|
|
"request": "attach",
|
|
"program": "${workspaceFolder}/build/NCursesPtyApp",
|
|
"processId": "${command:pickProcess}",
|
|
"MIMode": "gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
},
|
|
{
|
|
"description": "Disassemblierungsvariante auf Intel festlegen",
|
|
"text": "-gdb-set disassembly-flavor intel",
|
|
"ignoreFailures": true
|
|
}
|
|
]
|
|
},
|
|
]
|
|
} |