How to recover trash can icon in Visual Studio Code? - visual-studio-code

Whenever you enable terminal integrated tabs in Visual studio code, it replaces the default trash can icon and spilt-terminal option with a terminal dropdown. It is helpful but not in cases when you're occasionally killing the terminal.
Terminal without the trash can icon
So, How to recover that trash can icon?

To recover the trash can, open the setting.json file in your VS code and set the "terminal.integrated.tabs.enabled": true, to false.
recovered trash can icon

Related

Autosave files in VS code

Is there any setting to 'auto save files before running in VS Code'?
Acually I always have to save files before running with the "Code Runner" extension of VS Code. Is there any solution for it?
In the File tab of the application you can find a button that says Auto Save, toggle it. See this for a visual guide.

Visual Studio Code no longer jumps to errors in terminal with control click

Previously I've been able to jump to the error after running a program by control clicking on the error in the terminal window, but seemingly on restart this feature has gone away. Is this a setting I've messed with somewhere by accident or a key bind?
Update 1:
When control + hovering it gives the 'search project for' option
that just searches the code for the individual word as a string. I checked my settings using the preferences -> modified preferences and reset them with no change.
Add the following lines in settings.json file
"window.restoreWindows": "none"

How to unfreeze the terminal in VScode after CTRL+S?

I purposefully froze my terminal with CTRLS in visual studio code, so that I could inspect the fast log messages scrolling through. Normally, you can unfreeze it again with CTRLQ.
However, it seems that vscode catches this second shortcut and instead of unfreezing my terminal, it opens this popup in the middle of the screen - which disappears as soon as I release the keys...
This seems to be called the "Quick Open View".
I assume that there is a way to send the "unfreeze" signal to the terminal. How?
My solution for now was to detach tmux in vscode, then connect over ssh using a normal terminal, attach tmux, send the CTRLQ there, detach and exit again, and re-attach in vscode.
you can remove any shortcuts you want. go to file > preference > keyboard shortcuts
type "ctrl q"
and adapt as you wish
I also ran into this issue,
I found that if you go into File -> Preferences -> keyboard shortcuts
When you find the Ctrl-q shortcut, you can right click it and choose to remove it,
then the Ctrl-q will work to resume the terminal

(vs code) kill terminal button disappeared

I do not how I changed the settings, but kill terminal button disappeared from panel tab in vscode.
Can anyone tell me how to reset the terminal button settings.
vs code terminal
solved
remove the following line in setting.json
"terminal.integrated.tabs.enabled": true

how can i access terminal in visual studio code which is not working?

I opened terminal in vs code but the path is not coming. On clicking the terminal also the text is not appearing which I am typing. I am not able to type anything in terminal.
Go to the View menu of VScode. Then click on the menu option "Integrated Terminal". This will open the terminal window at bottom of VScode window.