comparison runtime/doc/options.txt @ 4358:cf1d93a3914a

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Mon, 06 May 2013 05:58:55 +0200
parents 2d1383658bb4
children 605c9ce57ec3
comparison
equal deleted inserted replaced
4357:2f4dad5dab9f 4358:cf1d93a3914a
1 *options.txt* For Vim version 7.3. Last change: 2013 Apr 05 1 *options.txt* For Vim version 7.3. Last change: 2013 Apr 27
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
275 :e two 275 :e two
276 Now the 'list' option is not set, because ":set nolist" resets the global 276 Now the 'list' option is not set, because ":set nolist" resets the global
277 value, ":setlocal list" only changes the local value and ":e two" gets the 277 value, ":setlocal list" only changes the local value and ":e two" gets the
278 global value. Note that if you do this next: > 278 global value. Note that if you do this next: >
279 :e one 279 :e one
280 You will not get back the 'list' value as it was the last time you edited 280 You will get back the 'list' value as it was the last time you edited "one".
281 "one". The options local to a window are not remembered for each buffer. 281 The options local to a window are remembered for each buffer. This also
282 happens when the buffer is not loaded, but they are lost when the buffer is
283 wiped out |:bwipe|.
282 284
283 *:setl* *:setlocal* 285 *:setl* *:setlocal*
284 :setl[ocal] ... Like ":set" but set only the value local to the 286 :setl[ocal] ... Like ":set" but set only the value local to the
285 current buffer or window. Not all options have a 287 current buffer or window. Not all options have a
286 local value. If the option does not have a local 288 local value. If the option does not have a local