We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19380d7 commit b3ba940Copy full SHA for b3ba940
.gitignore
@@ -41,7 +41,6 @@ jniLibs/
41
*.dex
42
43
# IDE
44
-.vscode
45
.idea/
46
*.iml
47
*.swp
.vscode/launch.json
@@ -0,0 +1,22 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Attach to Postgres (gdb)",
6
+ "type": "cppdbg",
7
+ "request": "attach",
8
+ "program": "/usr/lib/postgresql/16/bin/postgres",
9
+ "processId": "${command:pickProcess}",
10
+ "MIMode": "gdb",
11
+ "miDebuggerPath": "/usr/bin/gdb",
12
+ "stopAtEntry": false,
13
+ "setupCommands": [
14
15
+ "description": "Enable pretty-printing for gdb",
16
+ "text": "-enable-pretty-printing",
17
+ "ignoreFailures": true
18
+ }
19
+ ]
20
21
22
+}
0 commit comments