the WATCH panel disappear when I debug my code in VS Code - debugging

There should be four panels(VARIABLES, WATCH, CALL STACK, BREAKPOINTS) on the left side, but now there is only three.
I try my best to find how to open the WATCH, but failed. I can't find related settings in View or Setting.json
Can anyone help me? Thank you!
pic1
pic2

I was able to run my application and set a break-point. Right-clicked on a variable and selected "add to watch" and the watch section appeared.
A new "run and debug" icon in the side-bar appeared as well. It appears that I accidentally dragged the watch section to the sidebar.
I was able to open the "run and debug" menu and drag the new icon off the sidebar and into the menu. My "Watch" section is now back where it should be.

Try selecting one variable of your code (double click), and then click with the right button of your mouse, and choose the option "Add To Watch" on the drop-down nenu. The Watch panel will show again.
Let me know if it worked.

Related

Where is the "add a UI control" option in Xcode 14.1?

There used to be a section on the right side of xib file to select a UI control (e.g. button, checkbox, text area, etc) from menu, and add to xib file. But after upgrading to Xcode 14.1 the option is gone. I can't find it anywhere.
Previously it looked like this:
There's a plus sign in the upper right corner. See screenshot:
Then this should pop up. You can drag and drop what you want onto the storyboard.
Just googled up, the thing is called "Object Library", and the command to open it is:
Command + Shift + L
Thanks Adrian for showing the button in screenshot!

IntelliJ IDEA 2017 - Missing Debug window

My Intellij Debugger window went missing and I can't find any resources on how to get it back, the closest think I can get to my problem is a missing console window but that doesn't help. So I'm hoping someone here can help me retrieve it.
This pic shows a normal Intellij IDE (that I got from my friend) that shows the tab that's missing for me (in red) and the area in which this tab normally shows (in yellow).
And this pic shows my IDE with the missing Debugger window.
I also opened Intellij's help dialogue which claims that the window will show up when your code hits a break point but that didn't do it for me either.
Try the "restore layout" button at the left toolbar of the debugger toolwindow
Showing a tool window:
"Choose View" | "Tool Windows" | "Debug Tool Window" in the main menu.
It as simple as that.
There are multiple other things you can try, look here:
https://www.jetbrains.com/help/idea/manipulating-the-tool-windows.html#show
For example reset your Tool Windows:
You can return to the default workspace layout by choosing "Window" | "Restore Default Layout" (Shift+F12).
To enable the debug window
Click on View -> Tool Windows -> Debug
Or press (Alt+5)
This is not an answer to the specific question asked but a possible solution to My debug window has disappeared!. My situation was actually with Android Studio but should apply elsewhere.
My symptoms were:
I use multiple monitors and after a system crash my debug window
vanished.
Before the crash my debug window was in window mode on a separate
monitor. After the crash it was gone.
There was no Debug tab showing on the main window.
The Debug entry in the View menu was greyed.
The solution that finally worked was to set a break-point at a location I knew the code would hit, debug my project and make it hit the break-point. The Debug window magically appeared.
Remember to reposition the window correctly before exiting.
Try button on the right (there should be debugger, console....)
Try to Restore default layout in console/debugger screen. Its give in image please do check.
Remove the dev option from run/debug configurations from Command line.
You would have undocked, just look for "dock" sign, click on it.
Now debugger will restored to default view

RStudio: can I pop out the source pane?

I have a dual monitor and I wish I can pop out the "source pane"(where I edit my code), so that I can edit the code in one monitor and track everything else in another.
Does anyone know if this is possible?
Thank you very much for your help.
This feature was just added to RStudio this week. You can try it in our daily builds (0.99.636 or newer):
https://dailies.rstudio.com/
To pop out your file to a new window, either:
Drag the tab outside the RStudio window to where you want your new code window to appear, or
Click the "Show in new window" button on the editor toolbar (it's next to forward/back)
If you try it, let us know what you think on the support forum.
I'm using the latest Studio and encountered similar needs. I found that ctrl+shift+number will suit my needs most of the time since it zooms to the pane that I desire and can also back to the full four window layout.
An additional trick is customize the hotkey to alt+number [1,2,3,4,5] so the pane zooms more handy with one click by your left hand on the keyboard.
Hope it helps.

General tab missing

I have just switched over to using Xcode 5.
I have gone to change the name of my application with some other settings which I need to change, However when I have gone to do this I noticed my "General" tab is missing. Does any one know why this may have happened.
Just a quick update how to do it in Xcode 8:
See up in the left hand corner of your screenshot the blue icon? You have your project file selected and are viewing the project's global settings, which don't have a "General" tab.
Click either the triangle in the box up there or the lower blue icon with "template" and select a build target.
You are seeing your project's settings. You want to see your target's settings.
In the bar containing 'Info' and 'Build Settings' click on the project icon on the left and select your main target from the dropdown.
For me, General tab re-appeared when I did shift-command-Y which closed the debug window on the bottom.
The open debug window caused the tab bar with "General" to disappear.
The name of the application is on the Utilities file inspector for the project. With your project selected, press Cmd-opt-1 (or in the menus, View->Utilities->Show File inspector)

Visual Studio debug menu invisible

I feel a little stupid asking this, but the "Debug"-menu in my Visual Studio installation has disappeared. It supposed to be between the "Build" and "Tools" menu, but it is simply not there. Restarting VS doesn't help. Also tried looking for a way to customize the menus, but no success.
Any ideas where it went, and how I can get it back?
Right click on your menu -> Customize -> Select Menu Bar -> Click Reset button
alt text http://img63.imageshack.us/img63/3576/debugmenu.png
And make sure you're in debug mode :)
If this doesn't help try Tools menu -> Import and Export Settings -> Reset all settings
[VS2015] - During reseting be sure to choose 'General' preset. If you choose for example web dev code only it still would be invisible.
Inside the build menu drop down you will see the "Start Debug" submenu, you can start debugging by clicking "go" inside it. Or else you can press "F5" to start the debugging to see the Debug toolbar please follow the procedure given by Nokola.

Resources