感觉没有大佬做,就是弹出个框子然后选择搜索引擎聚合搜索的工具,个人很喜欢同时搜索n个引擎,做个小工具希望老哥们能提出一些改进意见
Bing:=Baidu:=Google:=zhihu:=Github:=0
!z::
gui,Destroy
Gui Add, Text, w-2 h-2 section
Gui Add, Edit, ys-4 w300 vKeywords gSubmit
Gui,Add,Button,ys-4 gSearch,Search
Gui Add, Text, xs-4 section
For k,v in ["Bing","Baidu","Google","zhihu","Github"]
Gui Add, CheckBox, x+5 v%v% gSubmit,%v%
gui,Show
return
Search:
Keywords:=RegExReplace(Keywords,"%","`%25")
if Google=1
run,https://www.google.com/search?q=%Keywords%
if Baidu=1
run,https://www.baidu.com/s?wd=%Keywords%
if zhihu=1
run,https://www.zhihu.com/search?type=content&q=%Keywords%
if Bing=1
run,https://www.bing.com/search?FORM=INCOH2&PC=1VIV&PTAG=ICO-c9d0fc87&q=%Keywords%
if Github=1
run,https://github.com/search?utf8=`%E2`%9C`%93&q=%Keywords%
return
Submit:
gui,Submit,NoHide
return
不错,简洁便利。
感谢大佬