0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

eclipseでマウススクロールが1行になるので複数行にするHotKey

Posted at
#Requires AutoHotkey v2.0

; Eclipseウィンドウがアクティブな場合のみスクリプトを適用
#HotIf WinActive("ahk_class SWT_Window0") ; Eclipseのウィンドウクラス名を指定

; マウスホイール上スクロール時に複数行スクロール
WheelUp::
Loop 3 { ; スクロール量を増やす(3回繰り返し)
    Send {WheelUp}
}
return

; マウスホイール下スクロール時に複数行スクロール
WheelDown::
Loop 3 { ; スクロール量を増やす(3回繰り返し)
    Send {WheelDown}
}
return

#HotIf ; 条件付きホットキーの終了
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?