Everything是一款离不开的软件了,能否扩展它直接搜索网络内容呢?

解决方案:

启动ev后,在搜索框输入内容,然后按热键 ctrl+enter,就会用默认浏览器打开 百度来搜哦,具体ahk代码 :

#SingleInstance,Force

#IfWinActive ahk_class EVERYTHING

^Enter::

ControlGetText,Keywords,Edit1,A

OutputDebug %Keywords%

run, http://www.baidu.com/s?wd=%Keywords%

return

#IfWinActive

Everything设置

【升级版】当启动器

;更新地址:https://blog. .net/liuyukuan/article/details/81950299

#SingleInstance,Force

#IfWinActive ahk_class EVERYTHING

^Enter::

ControlGetText,Keywords,Edit1,A

if (Keywords=”cmd”)

Run %ComSpec%

else if (Keywords=”notepad”)

Run notepad

else if (Keywords=”mspaint”)

Run mspaint

else if (Keywords=”calc”)

Run calc

else

{

OutputDebug %Keywords%

run, http://www.baidu.com/s?wd=%Keywords%

}

return

#IfWinActive