vrepl, term: return cursor to the top-left corner in vrepl after `clear` (#7600)

pull/7606/head
cbracketdash 2020-12-27 03:43:36 -08:00 committed by GitHub
parent 8cd470b56e
commit 0210d1bf24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -146,7 +146,7 @@ fn run_repl(workdir string, vrepl_prefix string) {
continue
}
if r.line == 'clear' {
term.erase_display('2')
term.erase_clear()
continue
}
if r.line == 'help' {

View File

@ -46,6 +46,7 @@ pub fn cursor_back(n int) {
// type: 1 -> current cursor position to beginning of the screen
// type: 2 -> clears entire screen
// type: 3 -> clears entire screen and also delete scrollback buffer
pub fn erase_display(t string) {
print('\x1b[' + t + 'J')
}
@ -58,8 +59,9 @@ pub fn erase_tobeg() {
erase_display('1')
}
// clears entire screen and returns cursor to top left-corner
pub fn erase_clear() {
erase_display('2')
print("\033[H\033[J")
}
pub fn erase_del_clear() {