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
Prev Previous commit
Next Next commit
Merge branch 'master' into pr1592
Change-Id: I7e26f492e584088a5e06d12d46561038d1069914
  • Loading branch information
hyangah committed Dec 29, 2021
commit f2bd27aae826fbd72133420885cb51a825a742a4
6 changes: 4 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@
"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
"MOCHA_TIMEOUT": "999999",
},
"stopOnEntry": false,
"sourceMaps": true,
Expand All @@ -87,7 +88,8 @@
"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
"MOCHA_TIMEOUT": "999999"
},
"stopOnEntry": false,
"sourceMaps": true,
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/goImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function implCursor() {

quickPick.onDidChangeValue(lodash.debounce(search, 250));

quickPick.onDidChangeSelection((selections: vscode.QuickPickItem[]) => {
quickPick.onDidChangeSelection((selections: readonly vscode.QuickPickItem[]) => {
if (typeof selections === 'undefined') {
return;
}
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.