How to change Paste hotkey? #73
|
I want to use shift+Insert for Paste. In Oryxiss shortcuts I see this hotkey is handled by the terminal widget. Where should I change it? |
Replies: 2 comments
|
@sosokun Today is not possible to modify the paste key directly, I can add the paste to hotkeys, the problem with Paste is the multiple modifiers related to it, what I can do is add the variantion too. |
|
Following up on my earlier answer with a concrete plan: I opened #75 to track this. Short version: you are right that this should be configurable, and it turned out to be cheaper than I first thought. The hotkey system in Settings > Shortcuts is already fully rebindable with conflict resolution and persistence, and it already accepts While tracing it I found a related bug worth fixing in the same change. Right now any On the "multiple modifiers" concern I raised earlier: the answer is that paste keeps several chords rather than exactly one. The open question in #75 is whether to give every action an optional secondary binding slot, or to model paste as a pair of actions. Either way, binding I also considered detecting the foreground app so No ETA yet, but it is tracked and scoped. Thanks for the report. |
Following up on my earlier answer with a concrete plan: I opened #75 to track this.
Short version: you are right that this should be configurable, and it turned out to be cheaper than I first thought. The hotkey system in Settings > Shortcuts is already fully rebindable with conflict resolution and persistence, and it already accepts
Insertas a key. The clipboard chords are simply the last interactive keys in the app that were never wired into it, soShift+Inserthas nothing to bind to. AddingTerminalCopy/TerminalPaste/TerminalSelectAllas proper actions closes that gap, and your request becomes a normal rebind in the Settings panel.While tracing it I found a related bug worth fixi…