PacificNW_Lover
PacificNW_Lover

Reputation: 5374

IntelliJ IDEA - How to reattach and place Console tab back to IDE

Am new to IntelliJ IDEA (am using 2017.1.3)...

Accidentally, made my Console tab window float and can't seem to reattach it to IntelliJ IDEA. When I run the Debugger, it launches as a separate window (which is very annoying).

Is there a way to reattach it back to the main window but on right of the Projects view and right underneath the Source Editor view?

Attached is a screenshot of the issue, at hand (which one can click on to see it in high res):

enter image description here

Update

Okay, somehow (by doing a lot of clicking and dragging), this is the closest that I've come to what I've want. The thing that's bothersome is that I can only see the Console (stdout) updated when the debugging session is over (not in real-time, as I've would been able to do in Eclipse). :(

enter image description here

Upvotes: 3

Views: 3600

Answers (4)

Karthick Ramesh
Karthick Ramesh

Reputation: 1486

enter image description here

From IntelliJ IDEA 2023.2.1, the configuration is added in to individual console as Settings.

In the top right of the required Tab, Tap on Settings icon -> View Mode -> Dock Pinned. This will be the same steps for other tabs like 'Terminal', 'Services' etc.,

Upvotes: 0

Xin Meng
Xin Meng

Reputation: 2110

Update the console in realtime: enter image description here

If you want all the JUnit test output to the console in real-time, just do as follows:

  1. choose the configure

enter image description here

  1. do configure for JUnit

enter image description here

Upvotes: 1

Xin Meng
Xin Meng

Reputation: 2110

Let me show the 4 location of Console in the Debug view, I think there should be one which is what you want:

  1. first enter image description here
  2. second enter image description here
  3. third enter image description here
  4. last enter image description here

Upvotes: 0

Xin Meng
Xin Meng

Reputation: 2110

enter image description here

floating separate tab of windows need restore on the tab.

enter image description here

You have two methods to restore floating windows:

  1. uncheck the floating mode in the terminal windows

enter image description here

  1. uncheck the floating mode in the Windows/Active Tool Windows enter image description here

Upvotes: 1

Related Questions