From c4167f88a0e9944738419e90a71f1f80fba39ccb Mon Sep 17 00:00:00 2001 From: Chris Holland Date: Fri, 18 Nov 2022 14:49:02 -0500 Subject: [PATCH] Humanize Shift Arrow Keys and Wheel Up/Down --- osc_tethys.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/osc_tethys.lua b/osc_tethys.lua index 5cfe034..82e6bc8 100644 --- a/osc_tethys.lua +++ b/osc_tethys.lua @@ -483,6 +483,12 @@ function humanBindKey(key) elseif key == 'DOWN' then return '⇩' elseif key == 'LEFT' then return '⇦' elseif key == 'RIGHT' then return '⇨' + elseif key == 'Shift+UP' then return 'Shift ⇧' + elseif key == 'Shift+DOWN' then return 'Shift ⇩' + elseif key == 'Shift+LEFT' then return 'Shift ⇦' + elseif key == 'Shift+RIGHT' then return 'Shift ⇨' + elseif key == 'WHEEL_UP' then return 'Scroll Up' + elseif key == 'WHEEL_DOWN' then return 'Scroll Down' elseif key == 'SHARP' then return '#' elseif key == 'BS' then return 'Backspace' elseif key == '{' then return '\\{'