danilo
danilo

Reputation: 9325

How can I clear the terminal in Visual Studio Code?

I need to clean the contents of the terminal in Visual Studio Code.

Every time I use Maven, the output of the terminal is attached to the previous build, which is confusing me.

How do I clear the terminal window with some command or keyboard shortcut?

cls doesn't work; it only hides the text.

Upvotes: 356

Views: 456861

Answers (30)

xarzu
xarzu

Reputation: 9479

With your mouse cursor, grab the top of the terminal window. Drag the mouse so that the terminal window collapses down to nothing and then bring it back. That is the best way to ensure that the terminal is cleared.

Upvotes: 1

Adeel Raza Azeemi
Adeel Raza Azeemi

Reputation: 793

  1. Just click the gear button on the left-bottom side on the VS code screen
  2. Click Keyboard shortcuts
  3. then Search for "Terminal: clear". By default no keyboard shortcut is assigned.
  4. Just double click the Terminal: Clear. If the shortcut is already used; press Esc and retry.
  5. and give the preferred shortcut of your choice (for clearing the terminal).

FYI: This method is the same as @SuRa but is a little simpler. Btw: I use VS Code version 1.80.0

Upvotes: 5

akshay_sushir
akshay_sushir

Reputation: 1841

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.

This will clear the terminal easily & work for any directory you have open in your terminal. This is for Windows, also try if it works for Mac.

This command is work in all VS code versions include latest version 1.52.1

Upvotes: 61

Narutofan
Narutofan

Reputation: 9

Push that garbage can:

enter image description here

when only one run:

enter image description here

The terminal reappears, when use it, so killing is no problem.

Upvotes: -9

Ashark
Ashark

Reputation: 843

In kde's konsole there is an action called "clear scrollback". It not only clears the terminal as usual, but also deletes the previous lines, so that you cannot scroll back and be confused.

I found in vs codium you can open Settings, search for terminal. Then go to Debugging, Debug - Terminal - Clear Before Reusing.

Set checkbox there, and every time you start a new debugging, the terminal scrollback history will not bother you.

Upvotes: 0

Hemachandra
Hemachandra

Reputation: 41

Navigate in VS code: File > Preferences > Keyboard Shortcuts search for workbench.action.terminal.clear

Double click on this entry & you'll be prompted for key binding. Hold CTRL and tap L. Ctrl + L should now be listed. Press enter to save this mapping

That's it.

Upvotes: 3

Jeterson Miranda Gomes
Jeterson Miranda Gomes

Reputation: 5483

Use Ctrl+K. This goes clean your console in Visual Studio Code.

Per comments, in later versions of VSCode (1.29 and above) this shortcut is missing / needs to be created manually.

  • Navigate: File > Preferences > Keyboard Shortcuts
  • search for workbench.action.terminal.clear
  • If it has no mapping or you wish to change the mapping, continue; otherwise note & use the existing mapping
  • Double click on this entry & you'll be prompted for a key binding. Hold CTRL and tap K. Ctrl + K should now be listed. Press enter to save this mapping
  • Right click the entry and select Change when expression. Type terminalFocus then press enter.
  • That's it. Now, when the terminal is in focus and you press Ctrl+K you'll get the behaviour you'd have expected to get from running clear/cls.

Upvotes: 459

meol
meol

Reputation: 1033

I just click on the trash bin icon to close it.

enter image description here

Upvotes: -9

Brandon Seda
Brandon Seda

Reputation: 71

workbench.action.terminal.clear no longer works (at least for VS Code Insiders 1.54 on Mac)

The following is the way to now map CTRL+L yo the default console functionality.

{
    "key": "ctrl+l",
    "command": "workbench.action.terminal.sendSequence",
    "args": {"text": "\u000c"},
    "when": "terminalFocus"
}

Upvotes: 6

Suvra.D
Suvra.D

Reputation: 91

I am using Visual Studio Code 1.52.1 on windows 10 machine.'cls' or 'Clear' doesn't clear the terminal.

just write

exit

It will close the terminal and press

ctrl+shift+`

to open new terminal.

Upvotes: 1

Aniket
Aniket

Reputation: 1122

Right click on the terminal and select clear option (for ubuntu).

For mac just type clear

Upvotes: 4

Steve
Steve

Reputation: 79

I'm running the June 2020 update of Visual Studio Code. I was looking for a simple way to clear the history of Terminal output from a Python script. Killing the Terminal via clicking on the trash can icon on the upper right did what I needed, and my Conda environment automatically reactivated.

Upvotes: -1

Shivam Verma
Shivam Verma

Reputation: 43

paste this command -

Remove-Item (Get-PSReadlineOption).HistorySavePath

in your powershell and start new powershell and its found cleared

for further details check this link @ https://www.shellhacks.com/clear-history-powershell/

Upvotes: -1

RICHARD ABRAHAM
RICHARD ABRAHAM

Reputation: 2528

By default there is NO keybinding associated to clearing the terminal in VSCode. Therefore, one must add a NEW Keybinding by following the below steps:

  1. Navigate: File --> Preferences --> Keyboard Shortcuts. (Or Ctrl + K and Ctrl + S together)
  2. Type in the Search Bar on top: Terminal: Clear.
  3. An entry with Command: Terminal:Clear will show up with the following VSCode command workbench.action.terminal.clear.
  4. Right Click on it and press Change Keybinding. Then press Ctrl + K together and then Enter. It will be saved.
  5. Right Click again and press Change When Expression. Just enter: terminalFocus. It will be saved.

Finally, open your integrated terminal and with focus inside the terminal, press Ctrl + K.

Upvotes: 5

SuRa
SuRa

Reputation: 1093

Go to

  1. File >Preferences >Keyboard shortcuts.
  2. Search for "Terminal: clear"
  3. By default no keyboard shortcut is assigned.
  4. Just click on the Plus (+)icon in the banner and give the preferred shortcut of your choice to clear the terminal.
  5. I prefer to use ctrl+k as that shortcut is not assigned with any command.

Upvotes: 42

RollingInTheDeep
RollingInTheDeep

Reputation: 731

F1 key opens the shortcuts for me using windows 10. Then type Terminal and you see the clear option.

Upvotes: 0

Tom Doe
Tom Doe

Reputation: 906

The accepted answer should be the following which was unmultimedio's comment to one of the answers above:

Cmd+K will work, you just need to set again in the Keyboard Shortcuts the workbench.action.terminal.clear to Cmd+K, so it shows as Source: User instead of Source: Default – unmultimedio Mar 12 '19 at 1:13

Upvotes: 1

SovietFrontier
SovietFrontier

Reputation: 2217

FOR VERSIONS AT AND ABOVE v1.32 SEE BELOW

Bindings for this command still need to be setup manually, even at v1.33.1, which I am at. The command is there under Terminal: Clear but the binding is blank. Here is how you can setup bindings in v1.32 and up.

Open up the Keyboard Shortcuts with Ctrl+K, Ctrl+S. Then click on the {} next to the Keyboard Shortcuts tab to open up the keybindings.json file.

keyboard shortcuts

After doing so, find some open space anywhere in the file, and type in the key bind below.

{
    "key": "ctrl+k",
    "command": "workbench.action.terminal.clear",
    "when": "terminalFocus"
}

FOR VERSIONS UP TO v1.32 SEE BELOW

This is for Visual Studio Code v1.18 up to v1.32, I believe; I am on v1.29.1. Since apparently there are a whole lot of assumptions about the default bindings, here is how you set up a binding, then use it. Keep in mind this binding will completely delete all of the history in your terminal too.

Open up the Keyboard Shortcuts with Ctrl+K, Ctrl+S. Once you are in Keyboard Shortcuts, click on keybindings.json in the text that says ....open and edit keybindings.json. Then on the RIGHT side, in the keybindings.json, add this (make sure you put a comma before the first { if there are one or more bindings already):

{
    "key": "ctrl+k",
    "command": "workbench.action.terminal.clear",
    "when": "terminalFocus"
}

FOR ALL VERSIONS

Remember, the "key": can be whatever binding you want. It doesn't HAVE to be Ctrl + K.

To use the keybinding, you must have focus in your terminal, and then do the binding.

Upvotes: 116

Chuck E.
Chuck E.

Reputation: 45

just type 'clear' in the terminal (windows) or ctrl+shift+p and on mac - right click

Upvotes: -2

bash7586
bash7586

Reputation: 1

I am using Visual Studio Code 1.38.1 on windows 10 machine.

Tried the below steps:

  1. exit()

  2. PS C:\Users\username> Cls

  3. PS C:\Users\username>python

Upvotes: -2

Zeeshan Ahmad
Zeeshan Ahmad

Reputation: 5644

Select Open Keyboard Shortcuts from command palette and put following to keyboard shortcuts file:

{
    "key": "cmd+k",
    "command": "workbench.action.terminal.clear",
    "when": "terminalFocus"
}

Upvotes: 0

user11951698
user11951698

Reputation: 57

You can use below to clear the screen in terminal: cls; or clr

Upvotes: 4

Prem
Prem

Reputation: 432

To permanently delete the previous commands, use this

  1. Set-PSReadlineOption -HistoryNoDuplicates

  2. Remove-Item (Get-PSReadlineOption).HistorySavePath

  3. Alt-f7

Upvotes: -1

rokus_inv
rokus_inv

Reputation: 113

To clear the terminal, using default keybindings on the newest version of VS-Code, you press CTRL-L.

Upvotes: 7

iain
iain

Reputation: 7

Try typing in 'cls', if that doesn't work, type 'Clear' capital C. No quotes for any. Hope this helps.

Upvotes: -2

Arslan Munir
Arslan Munir

Reputation: 467

V1.33 won't accept ctrl + k to clear terminal (Windows).

You need to enable manually by adding below code in your keybiniding.json, it will override the defaults.

In your VSCode, press ctrl + shift + p, search for keyboard and click on Open Keyboard Shortcuts to open the keybindings.json file.

Note: If you open the Default one, it will show the default settings, but as this file is read-only, you can't edit it manually.

Paste the following script in keybindings.json

{
            "key": "ctr+k",
            "command": "workbench.action.terminal.clear",
            "when": "terminalFocus"
}

Save the file.

Now your terminal will clear by crtl + k

Upvotes: 8

Jon Olav Vik
Jon Olav Vik

Reputation: 1461

The Code Runner extension has a setting "Clear previous output", which is what I need 95% of the time.

File > Preferences > Settings > (search for "output") > Code-runner: Clear previous output

The remaining few times I will disable the setting and use the "Clear output" button (top right of the output pane) to selectively clear accumulated output.

This is in Visual Studio Code 1.33.1 with Code Runner 0.9.8.

(Setting the keybinding for Ctrl+k did not work for me, presumably because some extension has defined "chords" beginning with Ctrl-k. But "Clear previous output" was actually a better option for me.)

Upvotes: 0

jabacchetta
jabacchetta

Reputation: 50018

2019 Update (Read in Full)


Shortcut

Mac: cmd + k

Windows: ctrl + k


TroubleShooting

If the shortcuts do not work for you, the most likely scenario is that either you or an extension you installed has added an open ended ctrl + k / cmd + k chord to another shortcut.

Open ended meaning, the shortcut does not have an explicit when clause that excludes terminal focus. There are two possible solutions here.

Solution 1:

If you added the shortcut, simply go to your keybindings.json file and add a when clause that does not include terminal focus. Example:

{
    "key": "cmd+k cmd+c",
    "command": "someCommandHere",
    "when": "editorTextFocus",
}

Solution 2:

Alternatively, you can add the workbench.action.terminal.clear command to the very bottom of keybindings.json, ensuring it takes precedence over other shortcuts. It'd be wise to add a comment so you don't forget and later place new chords below it. Example:

// Keep this keybinding at very bottom of file to ensure terminal clearing.
{
  "key": "cmd+k",
  "command": "workbench.action.terminal.clear",
  "when": "terminalFocus",
}

For additional information, check out this GitHub issue.

Upvotes: 19

Níkolas La Porta
Níkolas La Porta

Reputation: 531

You can change from settings menu (at least from version 1.30.2 and above)...

On Mac, just hit Code > Preferences > Settings.

Then just search for "clear" and check Clear Previous Output.

Settings - Clear Previous Output

Upvotes: 0

zeroboo
zeroboo

Reputation: 8945

Ctrl + Shift + P and select Terminal:clear

Upvotes: 198

Related Questions