From 9d837cde4d5a548a4c2e8457980225eb039d1410 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Tue, 2 Feb 2021 18:58:39 -0700 Subject: [PATCH] Add the latest NR term type -- kludge until ansi-bbs-utils is put in --- core/client_term.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/client_term.js b/core/client_term.js index 4cbd603c..d390d8ac 100644 --- a/core/client_term.js +++ b/core/client_term.js @@ -153,7 +153,7 @@ ClientTerminal.prototype.isANSI = function() { // linux: // * JuiceSSH (note: TERM=linux also) // - return [ 'ansi', 'pcansi', 'pc-ansi', 'ansi-bbs', 'qansi', 'scoansi', 'syncterm', 'ansi-256color' ].includes(this.termType); + return [ 'ansi', 'pcansi', 'pc-ansi', 'ansi-bbs', 'qansi', 'scoansi', 'syncterm', 'ansi-256color', 'ansi-256color-rgb' ].includes(this.termType); }; // :TODO: probably need to update these to convert IAC (0xff) -> IACIAC (escape it)