Handler for turing Copy/Paste/Cut Keycodes into 'universal' Ctrl-Insert, Shift-insert, shift-delete keystrokes for dedicated copy paste keys 0
| 236 | /// for dedicated copy paste keys |
| 237 | /// 0 |
| 238 | pub struct CopyPaste {} |
| 239 | impl<T: USBKeyOut> ProcessKeys<T> for CopyPaste { |
| 240 | fn process_keys(&mut self, events: &mut Vec<(Event, EventStatus)>, output: &mut T) ->HandlerResult { |
| 241 | //step 0: on key release, remove all prior key presses. |
nothing calls this directly
no outgoing calls
no test coverage detected