Skip to content

Commit b6be86b

Browse files
committed
packages init
1 parent a67551b commit b6be86b

17 files changed

+2357
-2481
lines changed

Diff for: .gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ devel
33
*~
44
.git
55
.catkin_workspace
6+
devel_isolated
7+
el
8+
el_isolated
9+
.ycm_extra_conf.*

Diff for: .vscode/launch.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "C++",
6+
"type": "gdb",
7+
"request": "launch",
8+
"target": "${file}",
9+
"cwd": "${workspaceRoot}"
10+
},
11+
{
12+
"name": "C++ (remote)",
13+
"type": "gdb",
14+
"request": "launch",
15+
"target": "dev${relativeFile}",
16+
"cwd": "${workspaceRoot}",
17+
"ssh": {
18+
"host": "remotehost",
19+
"user": "remoteuser",
20+
"keyfile": "/home/user/.ssh/id_rsa",
21+
"cwd": "/home/remote/ws"
22+
}
23+
},
24+
{
25+
"name": "Python",
26+
"type": "python",
27+
"request": "launch",
28+
"stopOnEntry": true,
29+
"pythonPath": "${config:python.pythonPath}",
30+
"program": "${file}",
31+
"debugOptions": [
32+
"WaitOnAbnormalExit",
33+
"WaitOnNormalExit",
34+
"RedirectOutput"
35+
]
36+
}
37+
]
38+
}

Diff for: .vscode/launch_args.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)