plugins: Add message for creating .vimspector.json
[vimconf.git] / neosnippets / vimspector.json
1 {
2 "configurations": {
3 "Launch": {
4 "default": true,
5 "adapter": "vscode-cpptools",
6 "filetypes": [ "cpp", "c", "objc", "rust" ],
7 "configuration": {
8 "request": "launch",
9 "MIMode": "gdb",
10 "program": "${fileBasenameNoExtension}",
11 "args": [ ],
12 "environment": [ ],
13 "externalConsole": true
14 }
15 },
16 "Attach": {
17 "adapter": "vscode-cpptools",
18 "filetypes": [ "cpp", "c", "objc", "rust" ],
19 "configuration": {
20 "request": "attach",
21 "MIMode": "gdb",
22 "program": "${fileBasenameNoExtension}"
23 }
24 },
25 "Python: Attach To Vim": {
26 "adapter": "multi-session",
27 "filetypes": [ "python" ],
28 "variables": {
29 "port": "5678",
30 "host": "localhost"
31 },
32 "configuration": {
33 "request": "attach"
34 }
35 },
36 "Python: Run current script": {
37 "default": true,
38 "adapter": "debugpy",
39 "filetypes": [ "python" ],
40 "configuration": {
41 "request": "launch",
42 "program": "${file}",
43 "args": [ "*${args:--update-gadget-config}" ],
44 "justMyCode#json": "${justMyCode:true}"
45 }
46 }
47 }
48 }