From a73e62fb0ea6e6b9c8037ce3182fc7752bec90fc Mon Sep 17 00:00:00 2001 From: Gore Liu Date: Mon, 22 Aug 2016 13:00:54 +0800 Subject: [PATCH] Remove Everything plugin --- Conf/RunZ.ini.help.txt | 2 -- Plugins/Everything.ahk | 20 -------------------- 2 files changed, 22 deletions(-) delete mode 100644 Plugins/Everything.ahk diff --git a/Conf/RunZ.ini.help.txt b/Conf/RunZ.ini.help.txt index 0192d67..ad8d355 100644 --- a/Conf/RunZ.ini.help.txt +++ b/Conf/RunZ.ini.help.txt @@ -168,8 +168,6 @@ QRCode=1 ; 生成二维码 Kanji=0 ; 简体繁体转换 -Everything=0 -; 使用 Everything 搜索 Demo=0 ; 插件示例 diff --git a/Plugins/Everything.ahk b/Plugins/Everything.ahk deleted file mode 100644 index d4d5b33..0000000 --- a/Plugins/Everything.ahk +++ /dev/null @@ -1,20 +0,0 @@ -; RunZ:Everything -; 使用 Everything 搜索 -; 需要 Everything 在运行才可以用 - -Everything: - if (!FileExist(A_ScriptDir "\Lib\Reserved\es.exe")) - { - return - } - - @("SearchWithEverything", "使用 Everything 搜索") -return - -; 功能待完善 -SearchWithEverything: - result := RunAndGetOutput(A_ScriptDir "\Lib\Reserved\es.exe -n 15 " Arg) - DisplayResult(result) - TurnOnRealtimeExec() - SetCommandFilter("Open") -return