Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have split my windows horizontally. Now how can I return to normal mode, i.e. no split window just one window without cancelling all of my open windows. I have 5 and do not want to "quit", just want to get out of split window.

share|improve this question

7 Answers

up vote 8 down vote accepted

Type Control key + w, then hit q

share|improve this answer
   
If you have 5 splitq opened, I am not sure that your solution would really help. – Xavier T. Jan 27 '11 at 9:03
I agree but the OP didn't pick eckes answer, and I can't change it myself. – Warren P Feb 25 at 18:09

To close all splits, I usually place the cursor in the window that shall be the only visible one and then do :on which makes the current window the on-ly visible window. Nice mnemonic to remember.


Edit: :help :on showed me that these commands are the same:

  • :on
  • :only
  • CTRL-w CTRL-o
  • And yes, also CTRL-W o has the same effect (as Nathan answered).

Each of these four closes all windows except the active one.

share|improve this answer
^w_o is in the docs. It is just above the rest. – Randy Morris Jan 27 '11 at 19:54
+1 If the other window contains any unintended changes, :on will respond with E445: Other window contains changes and will not close the other window. For example, I usually create a new window, and read into it a file that I'd like to yank from. In this case, Vim considers the other window to have unwritten changes. In such a case, use :on! to force a close. – Sabuncu 2 days ago

to close all windows but the current one use:

CTRL+w, o

That is, first CTRL+w and then o.

share|improve this answer

The command :hide will hide the currently focused window. I think this is the functionality you are looking for.

In order to navigate between windows type Ctrl+w followed by a navigation key (h,j,k,l, or arrow keys)

For more information run :help window and :help hide in vim.

share|improve this answer
This is great. Chrome (with the ssh plugin) traps <C-W> as "close tab" effectively disabling all vim's <c-w> window commands. Having an alternative is useful. – rein May 13 at 22:01

An alternative is ZQ or ZZ which will respectively close current window without saving changes and saving changes to the displayed buffer.

share|improve this answer

Just like the others said before the way to do this is to press ctrl+w and then o. This will "maximize" the current window, while closing the others. If you'd like to be able to "unmaximize" it, there's a plugin called ZoomWin for that. Otherwise you'd have to recreate the window setup from scratch.

share|improve this answer

Okay I just detached and reattach to the screen session and I am back to normal screen I wanted

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.