-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
There is a TODO in src/commands/stop-recorder.ts indicating the need to implement a full key mapping utility for keyboard event handling. Currently, there is only temporary handling for the space key, and a more robust solution is required.
Relevant code section:
// TODO: Implement a full key mapping utility.
// Temporary handling for the space key until a full key mapping utility is introduced.
if (key?.match(/^space$/i)) {
key = ' ';
}Suggested action:
- Implement a comprehensive key mapping utility to handle all relevant keyboard keys and edge cases.
- Replace the temporary handling for the space key with the new utility.
File: src/commands/stop-recorder.ts
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request