about summary refs log tree commit diff stats
path: root/keychord.lua
Commit message (Collapse)AuthorAgeFilesLines
* regression: typing uppercase letters in textKartik K. Agaram2022-05-301-7/+6
|
* some helpersKartik K. Agaram2022-05-291-0/+16
| | | | | | | | | | | | I spent some time trying to reduce the duplication between identical operations with and without the shift key pressed. However it makes things harder to understand. If you try to process selection in App.keychord_pressed in main.lua, you have to sometimes process the selection before (e.g. including the state of the cursor _before_ an arrow key takes effect), and sometimes after (e.g. copying the selection before resetting it, even though it doesn't include a shift key) Let's just leave things as they are.
* bugfix: include shift keys in modifier_downKartik K. Agaram2022-05-281-3/+25
|
* tweak modifier keys to include 'shift'Kartik K. Agaram2022-05-271-1/+4
|
* paste in text with M-vKartik K. Agaram2022-05-261-0/+5
|
* .Kartik K. Agaram2022-05-251-1/+0
|
* M-left/M-right for word-based motionsKartik K. Agaram2022-05-251-0/+1
|
* basic test-enabled frameworkKartik K. Agaram2022-05-221-3/+3
| | | | | Tests still have a lot of side-effects on the real screen. We'll gradually clean those up.
* handle chordsKartik K. Agaram2022-05-021-0/+25
For shift we'll mostly rely on love.textinput. For the rest I've created a simple driver.