Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | regression: typing uppercase letters in text | Kartik K. Agaram | 2022-05-30 | 1 | -7/+6 |
| | |||||
* | some helpers | Kartik K. Agaram | 2022-05-29 | 1 | -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_down | Kartik K. Agaram | 2022-05-28 | 1 | -3/+25 |
| | |||||
* | tweak modifier keys to include 'shift' | Kartik K. Agaram | 2022-05-27 | 1 | -1/+4 |
| | |||||
* | paste in text with M-v | Kartik K. Agaram | 2022-05-26 | 1 | -0/+5 |
| | |||||
* | . | Kartik K. Agaram | 2022-05-25 | 1 | -1/+0 |
| | |||||
* | M-left/M-right for word-based motions | Kartik K. Agaram | 2022-05-25 | 1 | -0/+1 |
| | |||||
* | basic test-enabled framework | Kartik K. Agaram | 2022-05-22 | 1 | -3/+3 |
| | | | | | Tests still have a lot of side-effects on the real screen. We'll gradually clean those up. | ||||
* | handle chords | Kartik K. Agaram | 2022-05-02 | 1 | -0/+25 |
For shift we'll mostly rely on love.textinput. For the rest I've created a simple driver. |