https://github.com/zk-phi/ewow-mouse
A mouse control extension based on binary-search, for EWOW.
https://github.com/zk-phi/ewow-mouse
ahk emacs
Last synced: 10 months ago
JSON representation
A mouse control extension based on binary-search, for EWOW.
- Host: GitHub
- URL: https://github.com/zk-phi/ewow-mouse
- Owner: zk-phi
- Created: 2015-12-14T09:31:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-11T05:49:32.000Z (over 10 years ago)
- Last Synced: 2024-12-30T21:16:07.028Z (over 1 year ago)
- Topics: ahk, emacs
- Language: AutoHotkey
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.org
Awesome Lists containing this project
README
* lib_mouse.ahk
a mouse control extension based on binary-search, for EWOW.
** Usage
Load this library
: #Include lib_mouse.ahk
And you may add a new keychord binding like :
: ^m:: mouse_mode()
:
: #If mouse
: h:: mouse_left()
: j:: mouse_down()
: k:: mouse_up()
: l:: mouse_right()
: space:: mouse_lclick()
: enter:: mouse_ldclick()
: ^g:: mouse_mode_end()
With the configuration above, =C-m= starts the mouse control mode.
While the mouse control mode is enabled, you can perform a
binary-search with =hjkl= keys, and then hit =space= (=enter=) to
(double) click the position. =C-g= will cancel the mouse control mode.