summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-03-25 13:03:48 +0100
committerBram Moolenaar <Bram@vim.org>2014-03-25 13:03:48 +0100
commit7b44934037cf2a603df8c9dcd6f82cdde4ec4940 (patch)
tree22c351d509575399a1ddf9247fdc0cad99dd6255 /runtime
parent03305f396ff7be377cb608f1a281c1eb5aa80d0b (diff)
downloadvim-git-7b44934037cf2a603df8c9dcd6f82cdde4ec4940.tar.gz
updated for version 7.4.215v7.4.215
Problem: Inconsistency: ":sp foo" does not reload "foo", unless "foo" is the current buffer. (Liang Li) Solution: Do not reload the current buffer on a split command.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/windows.txt19
1 files changed, 13 insertions, 6 deletions
diff --git a/runtime/doc/windows.txt b/runtime/doc/windows.txt
index d1561a0a2..3bc47499c 100644
--- a/runtime/doc/windows.txt
+++ b/runtime/doc/windows.txt
@@ -132,13 +132,20 @@ that have termcap codes for italics.
CTRL-W s *CTRL-W_s*
CTRL-W S *CTRL-W_S*
CTRL-W CTRL-S *CTRL-W_CTRL-S*
-:[N]sp[lit] [++opt] [+cmd] *:sp* *:split*
+:[N]sp[lit] [++opt] [+cmd] [file] *:sp* *:split*
Split current window in two. The result is two viewports on
- the same file. Make new window N high (default is to use half
- the height of the current window). Reduces the current window
- height to create room (and others, if the 'equalalways' option
- is set, 'eadirection' isn't "hor", and one of them is higher
- than the current or the new window).
+ the same file.
+
+ Make the new window N high (default is to use half the height
+ of the current window). Reduces the current window height to
+ create room (and others, if the 'equalalways' option is set,
+ 'eadirection' isn't "hor", and one of them is higher than the
+ current or the new window).
+
+ If [file] is given it will be edited in the new window. If it
+ is not loaded in any buffer, it will be read. Else the new
+ window will use the already loaded buffer.
+
Note: CTRL-S does not work on all terminals and might block
further input, use CTRL-Q to get going again.
Also see |++opt| and |+cmd|.