how to clear SublimeREPL window in Sublime 2
Asked Answered
C

1

8

I'm using SublimeREPL in Sublime 2 (v2.0.2) under OS X. I send Python files to the SublimeREPL window for evaluation, and I'd like to clear the SublimeREPL window from time to time. The window seems to be read-only, so cmd-a, delete doesn't work.

Calabria answered 23/5, 2014 at 13:50 Comment(0)
A
14

Use ctrl+l on a linux/osx system; on windows it's shift+ctrl+c

SublimeRepl documentation is here SublimeRepl keys

Linux   OS X    Windows     Command used    Meaning
Alt+p   Ctrl+p  Alt+p   repl_view_previous  Walk back to previous input, no autocomplete
Down    Down    Down    repl_view_next  Walk back to next input, with autocomplete
Alt+n   Ctrl+n  Alt+n   repl_view_next  Walk back to next input, no autocomplete
Enter   Enter   Enter   repl_enter  Send current line to REPL
Esc     Esc     Esc     repl_escape     Clear REPL input
Ctrl+l  Ctrl+l  Shift+Ctrl+c    repl_clear  Clear REPL screen
Shift+Ctrl+c    Shift+Ctrl+c    Unsupported     subprocess_repl_send_signal     Send SIGINT to REPL
Affricative answered 24/5, 2014 at 1:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.