Skip to content

Instantly share code, notes, and snippets.

@112KA
Last active September 4, 2018 02:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 112KA/cf6114323f104b743d16bfb11c686f6e to your computer and use it in GitHub Desktop.
Save 112KA/cf6114323f104b743d16bfb11c686f6e to your computer and use it in GitHub Desktop.
for AutoHotkey
;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