Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clearing WinGhci's command prompt (and also its values)

How can I clear WinGhci's (one of Haskell's Windows IDEs) command prompt and all the current "session" values?

like image 403
devoured elysium Avatar asked Sep 17 '10 07:09

devoured elysium


People also ask

How do I clear my Command Prompt?

Clear Command Prompt with CLS Command Enter multiple standard commands into the blank cmd screen. Next type CLS and press Enter button. This will clear all the previously entered commands from the CMD screen in Windows.

What is Command Prompt tool?

Command Prompt is a program that you can use to execute commands on a Windows computer. This tool is handy for troubleshooting or for setting automated tasks in the Windows operating system. Command Prompt can help you find your IP address, perform system repairs, and other advanced admin functions.


1 Answers

You can use :load with no arguments to clear all modules and bindings. To clear the prompt simply hit ctrl + s.

like image 143
Paul Avatar answered Sep 28 '22 18:09

Paul