Can I clean the repl?

Viewed 19754

I have played with a lot of code in a repl console, how can I clear it? I would like a fresh one without restarting it. Can that be done?

8 Answers

For users of the Cursive IDE plugin for IntelliJ IDEA who end up here, like me:

You can "cosmetically" clear the REPL (keeping your def'd symbols etc.) by clicking on this icon at the top of the REPL frame:

Clear REPL icon

There's no default key binding for this, but you can easily add one by opening your preferences, navigating to Keymap > Plugins > Cursive, and adding a binding for "Clear output for current REPL".

Alternatively, you can right-click in the editor and access "Clear output for current REPL" via the REPL commands.

Related