mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 04:07:40 +02:00
Add Google suggestions for web searches
Fix issues with push results
This commit is contained in:
@@ -57,7 +57,7 @@ namespace Wox.Plugin.System.CMD
|
||||
}
|
||||
catch (Exception) { }
|
||||
|
||||
context.PushResults(new List<Result>() { result });
|
||||
context.PushResults(query, new List<Result>() { result });
|
||||
|
||||
IEnumerable<Result> history = CMDStorage.Instance.CMDHistory.Where(o => o.Key.Contains(cmd))
|
||||
.OrderByDescending(o => o.Value)
|
||||
@@ -92,7 +92,7 @@ namespace Wox.Plugin.System.CMD
|
||||
return ret;
|
||||
}).Where(o => o != null).Take(4);
|
||||
|
||||
context.PushResults(history.ToList());
|
||||
context.PushResults(query, history.ToList());
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user