新增文件匹配

This commit is contained in:
fofolee 2020-06-20 19:46:59 +08:00
parent 730def47f3
commit 164d48146c

View File

@ -32,6 +32,8 @@ utools.onPluginEnter(async ({ code, type, payload }) => {
cmd = special(cmd); cmd = special(cmd);
// 正则 // 正则
if (type == 'regex') cmd = cmd.replace(/\{\{input\}\}/mg, payload); if (type == 'regex') cmd = cmd.replace(/\{\{input\}\}/mg, payload);
// 文件
if (type == 'files') cmd = cmd.replace(/\{\{MatchedFiles\}\}/mg, JSON.stringify(payload));
// 窗口 // 窗口
if (type == 'window') { if (type == 'window') {
// 获取选中的文件 // 获取选中的文件