Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to clear SublimeREPL window in Sublime 2

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.

like image 628
nonagon Avatar asked May 23 '14 13:05

nonagon


1 Answers

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
like image 185
AGS Avatar answered Oct 23 '22 07:10

AGS