summaryrefslogtreecommitdiffstats
path: root/runtime/doc/scroll.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-12-16 21:55:46 +0000
committerBram Moolenaar <Bram@vim.org>2005-12-16 21:55:46 +0000
commit146522e760717283465d58327be5cfd29434dfe5 (patch)
tree3770ddf5a03a77aa203d4b64ccefeb10792de33a /runtime/doc/scroll.txt
parent83c465c7051cd13b70a3fba8e4f8021a41214cbf (diff)
updated for version 7.0171v7.0171
Diffstat (limited to 'runtime/doc/scroll.txt')
-rw-r--r--runtime/doc/scroll.txt30
1 files changed, 19 insertions, 11 deletions
diff --git a/runtime/doc/scroll.txt b/runtime/doc/scroll.txt
index 1aa1b9304c..847c83fe40 100644
--- a/runtime/doc/scroll.txt
+++ b/runtime/doc/scroll.txt
@@ -1,4 +1,4 @@
-*scroll.txt* For Vim version 7.0aa. Last change: 2005 Apr 01
+*scroll.txt* For Vim version 7.0aa. Last change: 2005 Dec 16
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -153,31 +153,39 @@ to the closest character that is on the screen. The value of 'sidescroll' is
not used.
z<Right> or *zl* *z<Right>*
-zl Scroll the screen [count] characters to the left.
- This only works when 'wrap' is off. {not in Vi}
+zl Move the view on the text [count] characters to the
+ right, thus scroll the text [count] characters to the
+ left. This only works when 'wrap' is off. {not in
+ Vi}
z<Left> or *zh* *z<Left>*
-zh Scroll the screen [count] characters to the right.
- This only works when 'wrap' is off. {not in Vi}
+zh Move the view on the text [count] characters to the
+ left, thus scroll the text [count] characters to the
+ right. This only works when 'wrap' is off. {not in
+ Vi}
*zL*
-zL Scroll the screen half a screenwidth to the left.
- This only works when 'wrap' is off. {not in Vi}
+zL Move the view on the text half a screenwidth to the
+ right, thus scroll the text half a screenwidth to the
+ left. This only works when 'wrap' is off. {not in
+ Vi}
*zH*
-zH Scroll the screen half a screenwidth to the right.
- This only works when 'wrap' is off. {not in Vi}
+zH Move the view on the text half a screenwidth to the
+ left, thus scroll the text half a screenwidth to the
+ right. This only works when 'wrap' is off. {not in
+ Vi}
For the following two commands the cursor is not moved in the text, only the
text scrolls on the screen.
*zs*
-zs Scroll the screen horizontally to position the cursor
+zs Scroll the text horizontally to position the cursor
at the start (left side) of the screen. This only
works when 'wrap' is off. {not in Vi}
*ze*
-ze Scroll the screen horizontally to position the cursor
+ze Scroll the text horizontally to position the cursor
at the end (right side) of the screen. This only
works when 'wrap' is off. {not in Vi}