comparison runtime/doc/options.txt @ 13:24d5189d3956

updated for version 7.0005
author vimboss
date Sat, 03 Jul 2004 16:05:59 +0000
parents bdeee1504ac1
children 946da5994c01
comparison
equal deleted inserted replaced
12:bdeee1504ac1 13:24d5189d3956
1 *options.txt* For Vim version 7.0aa. Last change: 2004 Jul 02 1 *options.txt* For Vim version 7.0aa. Last change: 2004 Jul 03
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
3879 off and the line continues beyond the right of the 3879 off and the line continues beyond the right of the
3880 screen. 3880 screen.
3881 precedes:c Character to show in the first column, when 'wrap' 3881 precedes:c Character to show in the first column, when 'wrap'
3882 is off and there is text preceding the character 3882 is off and there is text preceding the character
3883 visible in the first column. 3883 visible in the first column.
3884 nbsp:c Character to show for non-breakable space. Left to 3884 nbsp:c Character to show for a non-breakable space (character
3885 blank when omitted. 3885 0xA0, 160). Left blank when omitted.
3886 3886
3887 The characters ':' and ',' should not be used. UTF-8 characters can 3887 The characters ':' and ',' should not be used. UTF-8 characters can
3888 be used when 'encoding' is "utf-8", otherwise only printable 3888 be used when 'encoding' is "utf-8", otherwise only printable
3889 characters are allowed. 3889 characters are allowed.
3890 3890
4258 'number' 'nu' boolean (default off) 4258 'number' 'nu' boolean (default off)
4259 local to window 4259 local to window
4260 Print the line number in front of each line. When the 'n' option is 4260 Print the line number in front of each line. When the 'n' option is
4261 excluded from 'cpoptions' a wrapped line will not use the column of 4261 excluded from 'cpoptions' a wrapped line will not use the column of
4262 line numbers (this is the default when 'compatible' isn't set). 4262 line numbers (this is the default when 'compatible' isn't set).
4263 The 'numberwidth' option can be used to set the room used for the line
4264 number.
4263 When a long, wrapped line doesn't start with the first character, '-' 4265 When a long, wrapped line doesn't start with the first character, '-'
4264 characters are put before the number. 4266 characters are put before the number.
4265 See |hl-LineNr| for the highlighting used for the number. 4267 See |hl-LineNr| for the highlighting used for the number.
4268
4269 *'numberwidth'* *'nuw'*
4270 'numberwidth' 'nuw' number (Vim default: 4 Vi default: 8)
4271 local to window
4272 Minimal number of columns to use for the line number. Only relevant
4273 when the 'number' option is set.
4274 Since one space is always between the number and the text, there is
4275 one less character for the number itself.
4276 The value is the minimum width. A bigger width is used when needed to
4277 fit the highest line number in the buffer. Thus with the Vim default
4278 of 4 there is room for a line number up to 999. When the buffer has
4279 1000 lines five columns will be used.
4280 The minimum value is 1, the maximum value is 10.
4281 NOTE: 'numberwidth' is reset to 8 when 'compatible' is set.
4266 4282
4267 *'osfiletype'* *'oft'* *E366* 4283 *'osfiletype'* *'oft'* *E366*
4268 'osfiletype' 'oft' string (RISC-OS default: "Text", 4284 'osfiletype' 'oft' string (RISC-OS default: "Text",
4269 others default: "") 4285 others default: "")
4270 local to buffer 4286 local to buffer