comparison runtime/doc/usr_25.txt @ 1256:b8017d61c94e

updated for version 7.1
author vimboss
date Sat, 12 May 2007 14:06:39 +0000
parents e9a34b503432
children 82b5078be2dd
comparison
equal deleted inserted replaced
1255:924416414c61 1256:b8017d61c94e
1 *usr_25.txt* For Vim version 7.1b. Last change: 2006 Jun 21 1 *usr_25.txt* For Vim version 7.1. Last change: 2007 May 11
2 2
3 VIM USER MANUAL - by Bram Moolenaar 3 VIM USER MANUAL - by Bram Moolenaar
4 4
5 Editing formatted text 5 Editing formatted text
6 6
117 117
118 gggqG 118 gggqG
119 119
120 "gg" to move to the first line, "gqG" to format until the last line. 120 "gg" to move to the first line, "gqG" to format until the last line.
121 Warning: If your paragraphs are not properly separated, they will be joined 121 Warning: If your paragraphs are not properly separated, they will be joined
122 together. A common mistake is to have a line with a space or Tab. That's a 122 together. A common mistake is to have a line with a space or tab. That's a
123 blank line, but not an empty line. 123 blank line, but not an empty line.
124 124
125 Vim is able to format more than just plain text. See |fo-table| for how to 125 Vim is able to format more than just plain text. See |fo-table| for how to
126 change this. See the 'joinspaces' option to change the number of spaces used 126 change this. See the 'joinspaces' option to change the number of spaces used
127 after a full stop. 127 after a full stop.
245 245
246 246
247 TABSTOP 247 TABSTOP
248 248
249 If you want to make indents a multiple of 4, you set 'shiftwidth' to 4. But 249 If you want to make indents a multiple of 4, you set 'shiftwidth' to 4. But
250 when pressing a Tab you still get 8 spaces worth of indent. To change this, 250 when pressing a <Tab> you still get 8 spaces worth of indent. To change this,
251 set the 'softtabstop' option: > 251 set the 'softtabstop' option: >
252 252
253 :set softtabstop=4 253 :set softtabstop=4
254 254
255 This will make the <Tab> key insert 4 spaces worth of indent. If there are 255 This will make the <Tab> key insert 4 spaces worth of indent. If there are