I've done some searching regarding this question but no luck so far, and I'm hoping somene here can help me out.
I'm using MatLab's Editor, but when I run the program, the console is in the main window. Is there a way I can make MatLab open its main window just below the Editor window?
For example, I'm on Chrome and then I open the Editor and run the program. But the main window is still hidden below Chrome. Is there any way I can configure it so that any time I open any MatLab window it makes sure that the main window is below that one?
Please let me know if I didn't make myself clear, and sorry for bad english!
Thanks in advance
It sounds like you want to "dock" your window.
There is a little curly arrow in the top right hand corner of each window (pointing to the right and down when the window is floating, if I recall correctly). If I understand your question correctly, that would solve it for you..
Related
sorry that I don't know how to refer to it. Pls see the image. When I type in vscode, this annoying popup keeps blocking my view to see the code above. I am new in this so I need to refer to the previous lines. maybe when I am more experienced, I don't need to do this anymore. But right now, I want to disable it! Could anyone tell me what it is and how to disable it? Thanks!
is possible to auto-reveal a window when track step in debug mode ?
When i do next step and the instance is in other sheet, the window no open automatically.
"workbench.editor.revealIfOpen": true,
will work fine for ctrl click reference, but seem not affect the debug mode with breakPoint tracking.
So the issue is when i push next step, if the step is in other files, i need search the file and open manually.
I made a little sketch to show the behavior i want.
sorry for my poor english guys.
EDIT ADD GIF OF THE BEHAVIOR
thanks for help
fixed thanks ............................
https://github.com/microsoft/vscode/issues/79633#issuecomment-528049293
I seen some pretty similar questions to this when searching but I am not very familiar with "VB script" so they didn't really help me. I'm using power shell to open multiple applications and that is no issue but I'd like to have two of them maximize to the left and right side of the screen so I can see them both at the same time. Any help would be appreciated!
Maybe I've broke some stuff in settings or something like this but Eclipse starts to show in editor ONLY the function/method that chosen in outline pane. No other code showing in editor. Unchecking "Link with editor" was not helpful. Once thing is helping is reopening of file. But once clicking something in Outline pane all code except chosen function disappearing again so Outline becomes quite useless pane.
Does somebody knows where I could turn off such behavior to make it acting as it was - just jumping to selected function but not hide other code.
Thanks in advance! And sorry for my english.
Sorry everybody for posting so silly question. However, maybe it would be helpful for somebody to know - just found why Eclipse was acting like I've described.
Settings->Javascript->Editor->Only show the selected element. Uncheck this.
Don't even know why it needs such strange settings option...
Thanks again!
I have a full-screen window (winA) and another window (winB) which is always on top.
Now I need to let winB display above winA, while winA is still above any other windows.
How to do this in GTK+? Thanks. (Maybe this needs Xlib?)
PS1: I won't use POPUP windows because it will put all the windows under it. I just need put winB on winA but not all the others. For example, if I am watching videos in the fullscreen mode, I wouldn't like to see winB. But if winA it's here, winB is just above it.
PS2: winA & winB are in the same program. In this case, it may simplify the solution.
The main way to tell the window manager to keep winB above winA is through the "transient for" hint, set in GTK+ with gtk_window_set_transient_for().
If your window is not a dialog, the behavior may not come out quite how you'd like; you could try setting a semantic hint with gtk_window_set_type_hint() and see if that gets you anywhere.
But the behavior is basically going to vary with window manager (which is intended). So you kind of need to just live with that and assume people will use a WM that works how they want it to.