diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-12 14:06:39 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-12 14:06:39 +0000 |
commit | 381ffaefa21a310e2842ff149a0696452f7cc6d0 (patch) | |
tree | 58ffb6d7d618fee82b315114279317b88d114195 /runtime | |
parent | 666771a83cec47403806080f1d7d689539929f00 (diff) | |
download | vim-git-381ffaefa21a310e2842ff149a0696452f7cc6d0.tar.gz |
updated for version 7.1
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/quotes.txt | 2 | ||||
-rw-r--r-- | runtime/doc/sign.txt | 2 | ||||
-rw-r--r-- | runtime/doc/term.txt | 2 | ||||
-rw-r--r-- | runtime/doc/usr_25.txt | 6 |
4 files changed, 6 insertions, 6 deletions
diff --git a/runtime/doc/quotes.txt b/runtime/doc/quotes.txt index c4c5cf785..2c5f13b64 100644 --- a/runtime/doc/quotes.txt +++ b/runtime/doc/quotes.txt @@ -1,4 +1,4 @@ -*quotes.txt* For Vim version 7.1b. Last change: 2006 Apr 24 +*quotes.txt* For Vim version 7.1. Last change: 2006 Apr 24 VIM REFERENCE MANUAL by Bram Moolenaar diff --git a/runtime/doc/sign.txt b/runtime/doc/sign.txt index b761abed2..b926136a2 100644 --- a/runtime/doc/sign.txt +++ b/runtime/doc/sign.txt @@ -1,4 +1,4 @@ -*sign.txt* For Vim version 7.1b. Last change: 2006 Apr 24 +*sign.txt* For Vim version 7.1. Last change: 2006 Apr 24 VIM REFERENCE MANUAL by Gordon Prieur diff --git a/runtime/doc/term.txt b/runtime/doc/term.txt index f92ec2295..e562d4d91 100644 --- a/runtime/doc/term.txt +++ b/runtime/doc/term.txt @@ -1,4 +1,4 @@ -*term.txt* For Vim version 7.1b. Last change: 2007 Feb 28 +*term.txt* For Vim version 7.1. Last change: 2007 Feb 28 VIM REFERENCE MANUAL by Bram Moolenaar diff --git a/runtime/doc/usr_25.txt b/runtime/doc/usr_25.txt index b87ed6a82..d6d581567 100644 --- a/runtime/doc/usr_25.txt +++ b/runtime/doc/usr_25.txt @@ -1,4 +1,4 @@ -*usr_25.txt* For Vim version 7.1b. Last change: 2006 Jun 21 +*usr_25.txt* For Vim version 7.1. Last change: 2007 May 11 VIM USER MANUAL - by Bram Moolenaar @@ -119,7 +119,7 @@ whole file by typing this: > "gg" to move to the first line, "gqG" to format until the last line. Warning: If your paragraphs are not properly separated, they will be joined -together. A common mistake is to have a line with a space or Tab. That's a +together. A common mistake is to have a line with a space or tab. That's a blank line, but not an empty line. Vim is able to format more than just plain text. See |fo-table| for how to @@ -247,7 +247,7 @@ When used on the second line of the example text, this is what you get: TABSTOP If you want to make indents a multiple of 4, you set 'shiftwidth' to 4. But -when pressing a Tab you still get 8 spaces worth of indent. To change this, +when pressing a <Tab> you still get 8 spaces worth of indent. To change this, set the 'softtabstop' option: > :set softtabstop=4 |