I want to press my computer keyboard keys "1" and "2" and pack these key presses into a short list using [pack f f], as in example below.
I also want the list to change in real time so when only "1" is pressed the list reads 1 0 and when only "2" is pressed the list reads 0 2. This patch does this using ]bondo 2] but when I press both computer keys together my list doesn't output "1 2" in the console. Instead it displays a very quick:
1 0
0 2
What am I missed to change the output to 1 2 in a list when both keys are pressed together? Patch included