From 28b41ee492805971632e1d65ab9f855ce837767b Mon Sep 17 00:00:00 2001 From: Plex Date: Fri, 4 Feb 2022 19:16:30 +0100 Subject: Factored the usage() function --- .vimspector.json | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 .vimspector.json (limited to '.vimspector.json') diff --git a/.vimspector.json b/.vimspector.json new file mode 100644 index 0000000..5b5be4e --- /dev/null +++ b/.vimspector.json @@ -0,0 +1,76 @@ +{ + "configurations": { + "ping herobrine": { + "adapter": "vscode-cpptools", + "configuration": { + "type": "cppdbg", + "request": "launch", + "program": "${workspaceRoot}/mcping", + "args": [ + "137.74.234.16:2001" + ], + "cwd": "${workspaceRoot}/test", + "externalConsole": true, + "stopAtEntry": true, + "MIMode": "gdb", + "logging": { + "engineLogging": false + } + } + }, + "ping seisan": { + "adapter": "vscode-cpptools", + "configuration": { + "type": "cppdbg", + "request": "launch", + "program": "${workspaceRoot}/mcping", + "args": [ + "mc.seisan.fr" + ], + "cwd": "${workspaceRoot}/test", + "externalConsole": true, + "stopAtEntry": true, + "MIMode": "gdb", + "logging": { + "engineLogging": false + } + } + }, + "ping localhost": { + "adapter": "vscode-cpptools", + "configuration": { + "type": "cppdbg", + "request": "launch", + "program": "${workspaceRoot}/mcping", + "args": [ + "localhost" + ], + "cwd": "${workspaceRoot}/test", + "externalConsole": true, + "stopAtEntry": true, + "MIMode": "gdb", + "logging": { + "engineLogging": false + } + } + }, + "ping query": { + "adapter": "vscode-cpptools", + "configuration": { + "type": "cppdbg", + "request": "launch", + "program": "${workspaceRoot}/mcping", + "args": [ + "${address}" + ], + "cwd": "${workspaceRoot}/test", + "externalConsole": true, + "stopAtEntry": true, + "MIMode": "gdb", + "logging": { + "engineLogging": false + } + } + } + } +} -- cgit v1.2.3