VSCode Setting (Does it exist) - visual-studio-code

When I perform a deploy or retrieve operation in VSCODE the result of the operation will make the panel that shows the output appear. I perform deploy and retrieve operations frequently since I use the "deploy on save" functionality. Is there a setting that will prevent that panel from showing up if the result of the operation is a success? Basically I only want the panel to show up if there is an actual problem that needs my attention/focus.
The below image shows the panel I am referring to circled in blue. The panel covers my code and requires that I manually click a button to rehide it.
I've tried turning the panel off in the "VIEW" settings but that doesn't work.
I've tried resizing it so that the height is very small but that is equally as annoying when I actually need to open the panel to use the terminal or review errors from the deploy/retrieve.
Is there a setting in VSCode that will prevent that panel from showing when the operation is successful?
NOTE: For every retrieve/deploy there is a dialog box that says if the operation was a success or failure. So not having this panel show will not prevent the user from knowing how the operation resulted

Related

VS Code Terminal panel [duplicate]

Is it possible to get tabs instead of the select list when using multiple terminals from the "integrated terminal" window?
Terminal "tabs" appear to be coming to v1.56. See Terminal Tabs release notes. They are vertical tabs - always visible, if you want, in a resizable view to the left or right. Not like traditional tabs across the top like a browser though.
Tabs in the terminal [are] available as a preview feature and can be
enabled with the following setting:
"terminal.integrated.tabs.enabled": true
The tabs view is a split pane to the right of two split terminals. It
contains icons and labels for each terminal instance.
When enabled, the new tabs view will only show by default when there
is at least 2 terminals.
We've tried to mostly align how the new tabs behave with how the
explorer works, here are some of the other behaviors:
Double clicking the empty space will create a new terminal.
Double clicking the sash will toggle the tabs view width between the "ideal" size which displays all the titles without truncating and a
narrow view that shows only the icons.
The tabs can be moved to the left side using the terminal.integrated.tabs.location setting.
Various other configuration settings available under terminal.integrated.tabs.
Terminal Statuses
Along with tabs, we have introduced the concept of statuses to the
terminal. A terminal can have many statuses, each of which represents
a state the terminal can be in temporarily, with the highest severity
one being displayed next to the tab. Status icons appear to the right
of the terminal title in the tabs view. On hover, details of the
status and any associated actions are presented.
On a tab associated with a terminal that requires a relaunch, a
yellow triangle with an exclamation mark is to the right of the
terminal title.
For now, these states are supported:
Relaunch needed: A warning icon status is used if extensions want to change a terminal's environment.
Disconnected: A plug icon status is used when the terminal loses its connection with its process.
Bell: A bell icon appears when the bell is enabled via the terminal.integrated.enableBell setting and the terminal bell
triggers.
We plan to support task states soon so that task run status is
available at a glance even without activating the tab.
And more at the link. From the Insiders Build:
NO EXTENSION REQUIRED, as docs say:
Ctrl+Shift+5
If enough space, you can press it multiple times. However, as always, extensions might be more sophisticated for the job.
They are called "Terminal Tabs" and you can un-check them to turn them off. Go to your VS code setting User->Features->Terminal and look for the section called "Integrated > Tabs:Enabled" and un-check it.
Requested by the community in https://github.com/Microsoft/vscode/issues/10546
Added in release 1.57 (https://github.com/microsoft/vscode/releases)
There is an extension that does this by adding tabs to the status bar: https://marketplace.visualstudio.com/items?itemName=Tyriar.terminal-tabs

I removed the bottom bar of VScode which shows the errors and errors, how can I recover it؟

I made an error yesterday when I was editing for a web contest, but no matter how hard I tried to send those edits to GitHub, I had to try the options in VS as usual to solve various problems. But I pressed an option without thinking and the E light disappears in the image below. Now I do not know how to return it.
And now my VS is like this
Open Settings using the shortcut Ctrl + ,
Search for "Workbench Status Bar" and look for the following option
Tick this checkbox

Filter toggle grays out workbook and only a manual refresh fixes

This is only happening with one workbook, all others function fine. I've tried live vs extract, restarting and reconnecting/refreshing my data source. Every time I toggle one of my filters, my visual is grayed out. Each time I toggle a filter, I have to right click the data source and refresh.
See Automatic Updates
In the menu bar, Worksheet -> Auto Updates, "Auto Update Worksheet" is likely unchecked which would cause the described behavior (or use the pause/play icon in the toolbar).

chrome developer tools restore window position

I undocked the dev-Tools of chrome so that when pressing F12, another window opens, showing the DEV-Tools.
Problem: For I-don't-know-what-reason the window moves to a random position whenever it's opened. currently it moved so far, that its coordinates are fully outside of my desktop. It always moves at least somewhere nearly outside my desktop.
Question: How to restore the window positioni if it's not reachable for grabbing?
How to avoid this happening again?
I had the same problem, turns out it was because I had multiple monitors and one of them had display scaling set to 125%, when I set it back to 100% the developer tools windows always appeared where I could see it entirely.
You can change the display scaling by right clicking the desktop and then clicking Display settings, look for the setting Change the size of text, apps, and other items, if it's already at 100%, click on another monitor at the top and check again.
Of course you might not like having the monitor at 100% scaling (everything will be smaller), but at least it works!

How to wrap line in PyDev's interactive console?

Each time I want to view a long output line, I have to drag the horizontal scroll bar. Is it possible to set word wrapping in PyDev's interactive console (not editor)?
Unfortunately no, it's not currently possible to enable word wrapping in the PyDev interactive console.
You may report this as a feature request in https://www.brainwy.com/tracker/PyDev (but even better would be providing a pull request for that -- see: http://www.pydev.org/developers.html)
It is now possible as of PyDev 6.2. By default it is not enabled. To see the icon that you have to click to enable visit this. For the possibility that the link disappears, go to the console tab and you will want to look for an icon which has a yellow "left-turn" arrow and click that.