File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 "printableName" : " Cache Web Terminal" ,
66 "description" : " Web-based terminal emulator for Caché administering." ,
77 "author" : " ZitRo" ,
8- "version" : " 4.2.2 " ,
8+ "version" : " 4.2.3 " ,
99 "gaID" : " UA-83005064-2" ,
1010 "releaseNumber" : 26 ,
1111 "scripts" : {
Original file line number Diff line number Diff line change @@ -198,10 +198,10 @@ let esc = {
198198 "\x1b[{\\d*};\"{[^\"]}\"p" : ( args ) => { // define key
199199 console . log ( "todo: implement key assignment" , args ) ;
200200 } ,
201- "\x1b[{\\d+ (?:;\\d+ )*}m" : ( args ) => {
201+ "\x1b[{\\d* (?:;\\d* )*}m" : ( args ) => {
202202 let indices = args [ 0 ] . split ( `;` ) ;
203203 for ( let i = 0 ; i < indices . length ; i ++ ) {
204- if ( indices [ i ] === "0" ) {
204+ if ( indices [ i ] === "0" || indices [ i ] === "" ) {
205205 output . resetGraphicProperties ( ) ;
206206 continue ;
207207 }
You can’t perform that action at this time.
0 commit comments