bind function
Create a single-keystroke ParsedBinding.
Implementation
ParsedBinding bind(String keys, String action, KeybindingContext context) {
return ParsedBinding(
chord: [parseKeystroke(keys)],
action: action,
context: context,
);
}