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
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.
Use Ctrl + ' to open the console. When Ctrl + ` is pressed, Sublime Text does not receive anything.
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.
In an interactive shell/terminal, we can simply use ctrl+l to clear the screen.
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.
I installed ClearConsole package, then type alt+k to clear then console.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With