Skip to content

Commit

Permalink
Adds Ctrl and Shift keycombos to declutter logs (#11327)
Browse files Browse the repository at this point in the history
  • Loading branch information
ro5490 authored Aug 14, 2024
1 parent 4911ea6 commit 0b9eeb1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/modules/keybindings/bindings_client.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ GLOBAL_LIST_INIT(valid_keys, list(
"é" = 1, "è" = 1, "ç" = 1, "à" = 1, "ù" = 1,
// Scrolling support
"ScrollUp" = 1, "ScrollDown" = 1,
// CTRLKeys and ShiftKeys support to declutter logs
"CtrlW" = 1, "CtrlA" = 1, "CtrlS" = 1, "CtrlD" = 1, "CtrlNorth" = 1, "CtrlWest" = 1, "CtrlSouth" = 1, "CtrlEast" = 1,
"ShiftW" = 1, "ShiftA" = 1, "ShiftS" = 1, "ShiftD" = 1, "ShiftNorth" = 1, "ShiftWest" = 1, "ShiftSouth" = 1, "ShiftEast" = 1,
))

/proc/input_sanity_check(client/C, key)
Expand Down

0 comments on commit 0b9eeb1

Please sign in to comment.