(value: string)
| 389 | } else if(cmd === 'filterPackages'){ |
| 390 | // use validation function to continuously update filtered packages |
| 391 | const validateInput = (value: string) => { |
| 392 | this.filterText = value; |
| 393 | this.refresh(); |
| 394 | return ''; |
| 395 | }; |
| 396 | // let user input filter text |
| 397 | this.filterText = await vscode.window.showInputBox({ |
| 398 | validateInput: validateInput, |