Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Improve goimpl implememtations (#1547)
* change InputBox to QuickPick
* search workspace interface symbol according to keyword
* change static code text to code snippet
  • Loading branch information
day-dreams authored and kakaxizhang committed Jun 25, 2021
commit c2e17a336269be91fe081b486135aa7292a17abd
15 changes: 8 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
"--disable-extensions"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"${workspaceFolder}/dist/**/*.js"
],
"stopOnEntry": false,
"sourceMaps": true,
"smartStep": true,
"preLaunchTask": "npm: webpack",
"env": {
"VSCODE_GO_IN_TEST": "" // Enable code
"VSCODE_GO_IN_TEST": "" // Enable code
},
},
{
Expand Down Expand Up @@ -61,7 +61,7 @@
"999999"
],
"env": {
"VSCODE_GO_IN_TEST": "1" // Disable code that shouldn't be used in test
"VSCODE_GO_IN_TEST": "1" // Disable code that shouldn't be used in test
},
"stopOnEntry": false,
"sourceMaps": true,
Expand All @@ -83,10 +83,11 @@
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/gopls/index",
"--user-data-dir=${workspaceFolder}/.user-data-dir-test",
"--timeout", "999999",
"--timeout",
"999999",
],
"env": {
"VSCODE_GO_IN_TEST": "1" // Disable code that shouldn't be used in test
"VSCODE_GO_IN_TEST": "1" // Disable code that shouldn't be used in test
},
"stopOnEntry": false,
"sourceMaps": true,
Expand Down Expand Up @@ -122,4 +123,4 @@
]
}
]
}
}
Loading