aboutsummaryrefslogtreecommitdiffstats
path: root/mouse.lua
AgeCommit message (Collapse)Author
2019-07-25mouse: Add non-functioning Option-ClickTeddy Wing
Was trying to get this to work a while ago and it's been sitting uncommitted in my local repo. Commit it just to have it, and try to figure out how to get it to work later.
2019-06-19mouse: Add scrolling shortcutsTeddy Wing
Scroll up, down, left, right using the number pad keys. Activate using F14, or scroll lock.
2019-06-17mouse: Remove Ctrl-Option-Shift-m mode hotkeyTeddy Wing
Changed this to 'padclear', and the way the code is written, we can't have two shortcuts to activate & deactivate the mode. Just keep one.
2019-06-15Add license (GNU GPLv3+)Teddy Wing
2019-06-15mouse: Send mouse down and up events separatelyTeddy Wing
Send 'down' when pressing the key, and 'up' when releasing. This sort of enables us to drag things, but I wasn't able to get an animation while dragging a window to test this. Looks like I'll need to work out a way to send mouse dragged events.
2019-06-15mouse: Activate mode with num lockTeddy Wing
Add an additional mode switch with the num lock or 'clear' key.
2019-06-15mouse: Add shortcuts for 10px and 1px movementTeddy Wing
Now we can move by large (100px) increments, as well as smaller 10px and 1px increments for more precision.
2019-06-15Add mouse hotkeysTeddy Wing
Proof of concept of shortcuts to move the mouse around.