Skip to content

Commit feb26ac

Browse files
committed
add debug config
1 parent fab5212 commit feb26ac

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
/target
22
.idea
3-
.vscode

.vscode/launch.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "lldb",
9+
"request": "launch",
10+
"name": "Debug executable 'emmylua_ls-rust'",
11+
"cargo": {
12+
"args": [
13+
"build",
14+
"--bin=emmylua_ls",
15+
"--package=emmylua_ls"
16+
],
17+
"filter": {
18+
"name": "emmylua_ls",
19+
"kind": "bin"
20+
}
21+
},
22+
"args": [
23+
"5007"
24+
],
25+
"cwd": "${workspaceFolder}"
26+
},
27+
]
28+
}

0 commit comments

Comments
 (0)