1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-02 07:07:46 +00:00

clear screen buffer via ansi commands (#158)

This commit is contained in:
Michael Angerman 2022-02-19 19:34:03 -08:00 committed by GitHub
parent 90a6d6de05
commit 8b03a86407
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,8 @@
### This clears out your screen buffer on a default mac terminal
### currently there is no way to do that in nushell
def cls [] {
ansi cls
ansi home
ansi clsb
}