Skip to content

Releases: qwefgh90/ng-terminal

2.2.0

28 Aug 10:25
Compare
Choose a tag to compare

ℹ️Features

  • Add a static class having functions using CSI. This API show a list of supported operations using CSI and helps to write sequences without failures. A full set of functions
    are found in this link. related issues are #7, #8
    import { FunctionsUsingCSI } from 'ng-terminal';
    ...
    const sequences = "data..1" + FunctionsUsingCSI.cursorBackward(1) + '2';
    component.write(sequences)