chord function
Create a chord (multi-keystroke) ParsedBinding.
Implementation
ParsedBinding chord(String keys, String action, KeybindingContext context) {
return ParsedBinding(
chord: parseChord(keys),
action: action,
context: context,
);
}