Add clipboard plugin.

This commit is contained in:
qianlifeng
2014-02-28 23:21:01 +08:00
parent 7d1ee33e1f
commit 7f769e00b9
31 changed files with 455 additions and 65 deletions

View File

@@ -27,8 +27,11 @@ namespace Wox.Plugin.System
SubTitle = string.Format("Activate {0} plugin", metadata.Name),
Score = 50,
IcoPath = "Images/work.png",
Action = (c) => changeQuery(metadataCopy.ActionKeyword + " "),
DontHideWoxAfterSelect = true
Action = (c) =>
{
changeQuery(metadataCopy.ActionKeyword + " ");
return false;
},
};
results.Add(result);
}
@@ -40,8 +43,11 @@ namespace Wox.Plugin.System
SubTitle = string.Format("Activate {0} web search", n.ActionWord),
Score = 50,
IcoPath = "Images/work.png",
Action = (c) => changeQuery(n.ActionWord + " "),
DontHideWoxAfterSelect = true
Action = (c) =>
{
changeQuery(n.ActionWord + " ");
return false;
}
}));
return results;