You can achieve it using AutoHotKey free, open-source tool. The following button remapping works for me with OneNote (Shift+)Win+S (#S
):
XButton2::#S
(you can also try with XButton1
)
If XButton1
or XButton2
won't work for you, use your Razer key mapping to produce something exotic, like Ctrl+Shift+Alt+S and then remap this combination to Win+S:
+!^s::
KeyWait, Ctrl
KeyWait, Shift
KeyWait, Alt
Send #S
Return
Remove KeyWait
for key modifiers Ctrl (^
), Alt (!
), Shift (+
), which were not involved in shortcut before ::
. In the above example, all 3 are involved – nothing to remove.