aboutsummaryrefslogtreecommitdiff
path: root/.vimspector.json
diff options
context:
space:
mode:
authorPlex <thinkplex@riseup.net>2022-02-04 19:16:30 +0100
committerPlex <thinkplex@riseup.net>2022-02-04 19:16:30 +0100
commit28b41ee492805971632e1d65ab9f855ce837767b (patch)
tree8fee2d3206bb74fd1117536576a391a8d1725e33 /.vimspector.json
parentc71e08d9daa3444318c6f768894b97b1b6d65bc9 (diff)
Factored the usage() function
Diffstat (limited to '.vimspector.json')
-rw-r--r--.vimspector.json76
1 files changed, 76 insertions, 0 deletions
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
+ }
+ }
+ }
+ }
+}