From 0ee05d29f0649185e93368dd593418083c3751ad Mon Sep 17 00:00:00 2001 From: N-R-K <79544946+N-R-K@users.noreply.github.com> Date: Tue, 28 Sep 2021 16:19:41 +0600 Subject: Clarify comment in example key-handler (#89) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit currently, the key-handler will not receive the `S-` modifier if there's a capital equivalent of that KEY. if https://github.com/nsxiv/nsxiv/pull/78 is to be merged, then this behaviour may change. however as it currently stands, we should fix the comment. we can update it later if needed. Co-authored-by: Berke Kocaoğlu --- examples/key-handler | 2 ++ 1 file changed, 2 insertions(+) (limited to 'examples/key-handler') diff --git a/examples/key-handler b/examples/key-handler index 614e1ec..6ac754b 100755 --- a/examples/key-handler +++ b/examples/key-handler @@ -11,6 +11,8 @@ # The key combo argument has the following form: "[C-][M-][S-]KEY", # where C/M/S indicate Ctrl/Meta(Alt)/Shift modifier states and KEY is the X # keysym as listed in /usr/include/X11/keysymdef.h without the "XK_" prefix. +# If KEY has an uppercase equivalent, S-KEY is resolved into it. For instance, +# K replaces S-k and Scedilla replaces S-scedilla, but S-Delete is sent as-is. rotate() { degree="$1" -- cgit v1.2.3-54-g00ecf