Skip to content

Commit

Permalink
chore: Update .gitignore and launch.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
qianlifeng committed Sep 5, 2024
1 parent b21be6b commit 0a1033a
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ Wox/resource/ui/flutter/
Wox.UI.React/dist/
node_modules/
__pycache__/
Release/
Release/
__debug_bin*
19 changes: 19 additions & 0 deletions Wox.UI.Flutter/wox/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "wox (debug)",
"request": "launch",
"type": "dart"
},
{
"name": "wox (release)",
"request": "launch",
"type": "dart",
"flutterMode": "release",
}
]
}
15 changes: 15 additions & 0 deletions Wox/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Run",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "main.go"
}
]
}

0 comments on commit 0a1033a

Please sign in to comment.