Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added CSI (\x9b) as additionally allowable escape #2521

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions lib/readline.js
Original file line number Diff line number Diff line change
Expand Up @@ -973,8 +973,9 @@ exports.emitKeypressEvents = emitKeypressEvents;
*/

// Regexes used for ansi escape code splitting
const metaKeyCodeReAnywhere = /(?:\x1b)([a-zA-Z0-9])/;
const functionKeyCodeReAnywhere = new RegExp('(?:\x1b+)(O|N|\\[|\\[\\[)(?:' + [
const metaKeyCodeReAnywhere = /(?:(?:\x1b|\x9b))([a-zA-Z0-9])/;
const functionKeyCodeReAnywhere = new RegExp('(?:(?:\x1b|\x9b)+)' +
'(O|N|\\[|\\[\\[)(?:' + [
'(\\d+)(?:;(\\d+))?([~^$])',
'(?:M([@ #!a`])(.)(.))', // mouse
'(?:1;)?(\\d+)?([a-zA-Z])'
Expand All @@ -994,11 +995,11 @@ function* emitKeys(stream) {
shift: false
};

if (ch === '\x1b') {
if (ch === '\x1b' || ch === '\x9b') {
escaped = true;
s += (ch = yield);

if (ch === '\x1b') {
if (ch === '\x1b' || ch === '\x9b') {
s += (ch = yield);
}
}
Expand Down Expand Up @@ -1219,7 +1220,7 @@ function* emitKeys(stream) {
key.name = 'backspace';
key.meta = escaped;

} else if (ch === '\x1b') {
} else if (ch === '\x1b' || ch === '\x9b') {
// escape key
key.name = 'escape';
key.meta = escaped;
Expand Down