Remove redundant Ctrl-Alt-N bind

Ctrl-Alt-Tab already does what Ctrl-Alt-N does, additionally the Ctrl-Alt-N implementation was just a hack around how Ctrl-Alt-Tab is implemented in the Kernel's scheduler.
See Kernel/Sched.ZC
This commit is contained in:
Arsenic Blood 2023-11-25 04:59:11 -05:00 committed by GitHub
parent 08c2e68bc7
commit 1c59545866
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -177,11 +177,6 @@ U0 CtrlAltM(I64)
Mute(!IsMute); Mute(!IsMute);
} }
U0 CtrlAltN(I64)
{
LBts(sys_ctrl_alt_flags, CTRL_ALT_TAB);
}
U0 CtrlAltT(I64) U0 CtrlAltT(I64)
{ {
User; User;
@ -235,7 +230,6 @@ U0 KeyDevInit()
CtrlAltCBSet('D', &CtrlAltD, "Cmd /Enter Debugger",, TRUE); CtrlAltCBSet('D', &CtrlAltD, "Cmd /Enter Debugger",, TRUE);
CtrlAltCBSet('F', &CtrlAltF, "Cmd /Toggle Aux Font"); CtrlAltCBSet('F', &CtrlAltF, "Cmd /Toggle Aux Font");
CtrlAltCBSet('M', &CtrlAltM, "Cmd /Toggle Mute"); CtrlAltCBSet('M', &CtrlAltM, "Cmd /Toggle Mute");
CtrlAltCBSet('N', &CtrlAltN, "Cmd /Next Focus Task",, TRUE);
CtrlAltCBSet('T', &CtrlAltT, "Cmd /Terminal Window"); CtrlAltCBSet('T', &CtrlAltT, "Cmd /Terminal Window");
CtrlAltCBSet('V', &CtrlAltV, "Cmd /Video Framebuffer Flush",, TRUE); CtrlAltCBSet('V', &CtrlAltV, "Cmd /Video Framebuffer Flush",, TRUE);
CtrlAltCBSet('X', &CtrlAltX, "Cmd /Kill Focused Task",, TRUE); CtrlAltCBSet('X', &CtrlAltX, "Cmd /Kill Focused Task",, TRUE);