Revert "Remove redundant Ctrl-Alt-N bind"

This reverts commit 1c59545866.
This commit is contained in:
GutPuncher 2023-11-26 00:51:49 -05:00
parent 4a1877c22e
commit cb0198e864
No known key found for this signature in database
GPG key ID: 38CE0A7B6841D1C7

View file

@ -177,6 +177,11 @@ 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;
@ -230,6 +235,7 @@ 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);