LoginSignup
3
3

More than 3 years have passed since last update.

Autohotkey で、いつでもどこでも Google 検索

Last updated at Posted at 2017-09-02

無変換+g でGoogle検索窓

sc07B & g::
InputBox, sword, Google Search, , ,500,130
if ErrorLevel <> 0
{}
else
{
NewStr := RegExReplace(sword, "\s+", "+")
Sleep 3
; Run, "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -new-tab "http://www.google.co.jp/search?hl=ja&lr=lang_ja&ie=UTF-8&q=%sword%"
Run, "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -new-tab "http://www.google.co.jp/search?hl=ja&lr=lang_ja&ie=UTF-8&q=%sword%"
}
return

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3