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.0.0-beta.9 " ,
8+ "version" : " 4.0.0-beta.10 " ,
99 "gaID" : " UA-83005064-2" ,
1010 "releaseNumber" : 26 ,
1111 "scripts" : {
Original file line number Diff line number Diff line change 11import * as output from "./index" ;
22import { COLOR_8BIT } from "./const" ;
33import * as server from "../server" ;
4+ import * as caret from "../input/caret" ;
45
56let cursorHome ,
67 savedCursorPosition = [ ] ,
@@ -86,6 +87,12 @@ export default {
8687 "\x1b[7l" : ( ) => {
8788 output . LINE_WRAP_ENABLED = false ;
8889 } ,
90+ "\x1b[?25h" : ( ) => {
91+ caret . hide ( ) ;
92+ } ,
93+ "\x1b[?25l" : ( ) => {
94+ caret . update ( ) ;
95+ } ,
8996 // font control
9097 "\x1b(" : ( ) => {
9198 // set default font
You can’t perform that action at this time.
0 commit comments