File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ export function registerPowerShellFindModuleCommand(client: LanguageClient): voi
30
30
var disposable = vscode . commands . registerCommand ( 'PowerShell.PowerShellFindModule' , ( ) => {
31
31
var items : QuickPickItem [ ] = [ ] ;
32
32
33
- vscode . window . setStatusBarMessage ( GetCurrentTime ( ) + " Querying PowerShell Gallery " ) ;
33
+ vscode . window . setStatusBarMessage ( GetCurrentTime ( ) + " Initializing... " ) ;
34
34
client . sendRequest ( FindModuleRequest . type , null ) . then ( ( modules ) => {
35
35
for ( var item in modules ) {
36
36
items . push ( { label : modules [ item ] . name , description : modules [ item ] . description } ) ;
37
37
} ;
38
38
39
39
vscode . window . setStatusBarMessage ( "" ) ;
40
- Window . showQuickPick ( items ) . then ( ( selection ) => {
40
+ Window . showQuickPick ( items , { placeHolder : "Results: (" + modules . length + ")" } ) . then ( ( selection ) => {
41
41
if ( ! selection ) { return ; }
42
42
switch ( selection . label ) {
43
43
default :
You can’t perform that action at this time.
0 commit comments