-
-
Notifications
You must be signed in to change notification settings - Fork 576
Open
Labels
Bugresolvedif issue is resolved, it will be open until merge with masterif issue is resolved, it will be open until merge with master
Description
Issue summary
CTRL+E is handled by the Brave and Chrome browser
Expected behavior
CTRL+E should jump to the end of the CMD, when terminal is in focus
Steps to reproduce
- Open Terminal in Chrome or Brave
- Focus the terminal
- Press CTRL+A and CTRL+E
Browser and OS
Chromium based browsers
Additional notes
This can be fixed in user code, by adding a keymap option
const term = $('body').terminal({}, {
keymap: {
'CTRL+E': (e, original) => {
original();
return false;
}
}
});Metadata
Metadata
Assignees
Labels
Bugresolvedif issue is resolved, it will be open until merge with masterif issue is resolved, it will be open until merge with master