Closed Immac closed 9 months ago
Agree, i hate it, because it switches on when I edit prompt and want to select. It should not conflict to any editing key.
Also the hotkey can be still one-handeld, like shift+f3 or shift+F11
ATM the only way to fix it — change tttnfullscreen.js at str 211 and set «read only» attr to file to be sure, it will not be rewritten.
was:
if ((e.code === 'ArrowUp' && e.shiftKey) && !e.ctrlKey) {
fixed:
if ((e.code === 'F11' && e.shiftKey) && !e.ctrlKey) {
okay, i made pull request for this change, let`s wait
Merged the pull request
shift + up is a very common binding when editing text (select text upwards), I find myself going fullscreen a lot of the time due to this, check usual keyboard shortcuts and appropriately change it, if possible something like modifier + f11 could be a better key bind.