We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to review new termbuf API used by ansiparser2.
termbuf
ansiparser2
termbuf = { puts: () => {}, scrollUp: () => {}, scrollDown: () => {}, setScrollRegion: () => {}, handleCR: () => {}, handleLF: () => {}, handleInsert: () => {}, handleTab: () => {}, handleClear: () => {}, handleDel: () => {}, handleBackTab: () => {}, eraseLine: () => {}, insertLine: () => {}, deleteLine: () => {}, eraseChar: () => {}, setAttribute: () => {}, gotoPos: () => {}, gotoHorizon: () => {}, gotoVertical: () => {}, movePos: () => {}, saveCursor: () => {}, restoreCursor: () => {}, getRow: () => { return 24; }, getColumn: () => { return 80; }, };
The text was updated successfully, but these errors were encountered:
setAttribute shall split to resetAttribute, setUnderline, setBlink, setForegroundColor, setBackgroundColor, ...
setAttribute
resetAttribute
setUnderline
setBlink
setForegroundColor
setBackgroundColor
Sorry, something went wrong.
getRow & getColumn 要不要改 getRowsCount & getColumnsCount 比較明確啊?
Sound great.
getRow -> getRowsCount getColumn -> getColumnsCount
No branches or pull requests
Need to review new
termbuf
API used byansiparser2
.The text was updated successfully, but these errors were encountered: