<Control-Shift-Key-0>
<Control-Key-plus>
works but
<Control-Key-/>
doesn't.
I am unable to bind ctrl + / in python. Is there any documentation of all the possible keys?
<Control-Shift-Key-0>
<Control-Key-plus>
works but
<Control-Key-/>
doesn't.
I am unable to bind ctrl + / in python. Is there any documentation of all the possible keys?
Use
<Control-slash>
:I don't have a link to a complete list of these event names. Here is a partial list I've collected:
Here is a list of all the tk keysysm codes: https://www.tcl.tk/man/tcl8.6/TkCmd/keysyms.htm
The two I was looking for was
<Win_L>
and<Win_R>
.