Skip to content

CTRL+E trigger search in Brave #1016

@jcubic

Description

@jcubic

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

  1. Open Terminal in Chrome or Brave
  2. Focus the terminal
  3. 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

No one assigned

    Labels

    Bugresolvedif issue is resolved, it will be open until merge with master

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions