Skip to content

2.2.0

Compare
Choose a tag to compare
@qwefgh90 qwefgh90 released this 28 Aug 10:25
· 81 commits to master since this release

ℹ️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)