@@ -134,7 +134,8 @@ private List<Result> Commands()
134
134
{
135
135
var results = new List < Result > ( ) ;
136
136
var logPath = Path . Combine ( DataLocation . DataDirectory ( ) , "Logs" , Constant . Version ) ;
137
- var userDataPath = DataLocation . DataDirectory ( )
137
+ var userDataPath = DataLocation . DataDirectory ( ) ;
138
+ var recycleBinFolder = "shell:RecycleBinFolder" ;
138
139
results . AddRange ( new [ ]
139
140
{
140
141
new Result
@@ -296,11 +297,12 @@ private List<Result> Commands()
296
297
SubTitle = context . API . GetTranslation ( "flowlauncher_plugin_sys_openrecyclebin" ) ,
297
298
IcoPath = "Images\\ openrecyclebin.png" ,
298
299
Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\xe74d " ) ,
299
- CopyText = "shell:RecycleBinFolder" ,
300
+ CopyText = recycleBinFolder ,
301
+ AutoCompleteText = recycleBinFolder ,
300
302
Action = c =>
301
303
{
302
304
{
303
- System . Diagnostics . Process . Start ( "explorer" , "shell:RecycleBinFolder" ) ;
305
+ System . Diagnostics . Process . Start ( "explorer" , recycleBinFolder ) ;
304
306
}
305
307
306
308
return true ;
@@ -390,6 +392,7 @@ private List<Result> Commands()
390
392
SubTitle = context . API . GetTranslation ( "flowlauncher_plugin_sys_open_log_location" ) ,
391
393
IcoPath = "Images\\ app.png" ,
392
394
CopyText = logPath ,
395
+ AutoCompleteText = logPath ,
393
396
Action = c =>
394
397
{
395
398
context . API . OpenDirectory ( logPath ) ;
@@ -402,6 +405,7 @@ private List<Result> Commands()
402
405
SubTitle = context . API . GetTranslation ( "flowlauncher_plugin_sys_open_docs_tips" ) ,
403
406
IcoPath = "Images\\ app.png" ,
404
407
CopyText = Constant . Documentation ,
408
+ AutoCompleteText = Constant . Documentation ,
405
409
Action = c =>
406
410
{
407
411
context . API . OpenUrl ( Constant . Documentation ) ;
@@ -414,6 +418,7 @@ private List<Result> Commands()
414
418
SubTitle = context . API . GetTranslation ( "flowlauncher_plugin_sys_open_userdata_location" ) ,
415
419
IcoPath = "Images\\ app.png" ,
416
420
CopyText = userDataPath ,
421
+ AutoCompleteText = userDataPath ,
417
422
Action = c =>
418
423
{
419
424
context . API . OpenDirectory ( userDataPath ) ;
0 commit comments