Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to clear console in sublime text editor

How to clear console in sublime text editor. I have searched on internet too..But can't find proper shortcut for that. Please provide info

like image 623
Curious_k.shree Avatar asked Jul 15 '14 10:07

Curious_k.shree


People also ask

How do I clear my console code?

To clear Terminal in VS Code simply press Ctrl + Shift + P key together this will open a command palette and type command Terminal: Clear . Also you will go to View in taskbar upper left corner of vs code and open Command pallete.

How do I open the console in Sublime Text editor?

Use Ctrl + ' to open the console. When Ctrl + ` is pressed, Sublime Text does not receive anything.

Is there a console in Sublime Text?

Terminus is a recent plugin, highly under development. It's the best cross-platform console in Sublime Text that I have seen yet. Show activity on this post. Will Bond created an excellent plugin for called "Terminal" for calling the terminal at project or file levels.

How do I clear the console in Python 3?

In an interactive shell/terminal, we can simply use ctrl+l to clear the screen.


2 Answers

I assume you're talking about the console accessible via View -> Show Console or Ctrl`. Unlike other answers on SO, which deal with clearing the Python console when opened from the command prompt, os.system("cls") or os.system("clear") (depending on your OS) don't work with the Sublime console. The Sublime API (version 2 or version 3) does not have any built-in console-clearing method, and I was unable to find any undocumented method in sublime.py or sublime_plugin.py. The console appears to be read-only, as selecting all the text and hitting Delete doesn't work either.

I've been looking into this for some time, and I've come to the conclusion that it does not appear to be possible. However, there is a hackish workaround - just run print('\n'*100) to print 100 newline characters, and you won't be able to see any of the previous output unless you scroll up some distance.

like image 75
MattDMo Avatar answered Sep 19 '22 10:09

MattDMo


I installed ClearConsole package, then type alt+k to clear then console.

like image 33
yujiezhang Avatar answered Sep 23 '22 10:09

yujiezhang