Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which command could be used to clear screen in CLISP?

Tags:

lisp

clisp

Such as cls for cmd.exe. It's very annoy if I can't do this.

like image 674
Thomson Avatar asked Feb 03 '11 03:02

Thomson


People also ask

Which command is used to clear screen?

CLS (Clear Screen)

What is the command to clear the screen in Linux?

Clear Terminal via Ctrl+L / Ctrl+Shift+K Shortcut An alternative in some terminal emulators is Ctrl + Shift + K . The command provides the same output as Ctrl + L .

What is the clear screen command in Python?

Method 1: Clear screen in Python using cls You can simply “cls” to clear the screen in windows.

How do you clear the console in Rust?

print! ("\x1B[2J\x1B[1;1H"); This will clear the screen and put the cursor at first row & first col of the screen. Save this answer.

How do you clear a command in terminal?

A common way to do that is to use the `clear` command, or its keyboard shortcut CTRL+L.

How do you clear the screen on Anaconda prompt?

You can use Ctrl+L keyboard shortcut in Linux to clear the screen.


1 Answers

You can use screen:clear-window to do this:

(screen:with-window (screen:clear-window screen:*window*))

For more information see the documentation on screen. Also note that these functions are specific to clisp.

like image 88
sepp2k Avatar answered Dec 03 '22 11:12

sepp2k