mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +02:00
Add clipboard plugin.
This commit is contained in:
@@ -26,7 +26,11 @@ namespace Wox.Plugin.System
|
||||
{
|
||||
Title = string.Format("Search {0} for \"{1}\"", webSearch.Title, keyword),
|
||||
IcoPath = webSearch.IconPath,
|
||||
Action = (c) => Process.Start(webSearch.Url.Replace("{q}", keyword))
|
||||
Action = (c) =>
|
||||
{
|
||||
Process.Start(webSearch.Url.Replace("{q}", keyword));
|
||||
return true;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user