Last active
September 4, 2018 02:11
-
-
Save 112KA/cf6114323f104b743d16bfb11c686f6e to your computer and use it in GitHub Desktop.
for AutoHotkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;G5ボタン&マウスホイールでWindow切り替え | |
sc07B & WheelDown::ShiftAltTab | |
sc07B & WheelUp::AltTab | |
;G5ボタン&右クリックで選択したテキストをgoogle検索 | |
sc07B & RButton:: | |
clipboard = | |
Send, ^c | |
Sleep 100 | |
Run, http://www.google.com/search?q=%clipboard% | |
Return | |
;G4ボタン&マウスホイールでブラウザTab切り替え | |
^WheelDown::Send,{Blind}^+{Tab} | |
^WheelUp::Send,{Blind}^{Tab} | |
;G4ボタン+右クリックでブラウザTab閉じる | |
^RButton::Send,^{w} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment