Hey dHakZz, you can make two keys trigger the same action by creating two keybinds that have different keys but the same commands. Here is what that might look like in the keybinds.json
file:
{
"key.keyboard.a": "sneak",
"key.keyboard.b": "sneak"
}
To make the same key trigger multiple commands (not what you asked for, but it's such a common question that people looking for it might find this thread), you separate the commands with a semicolon (;
):
{
"key.keyboard.b": "fastplace;fastbreak"
}
Hope this helps!