comparison runtime/doc/starting.txt @ 10617:9a75c8a1b8b1

Update runtime files. commit https://github.com/vim/vim/commit/369b6f57c426b4bf39b4a0cac8d21ed1b5f7de4d Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 17 12:22:32 2017 +0100 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 17 Jan 2017 12:30:05 +0100
parents 222b1432814e
children 5cd9ba96561d
comparison
equal deleted inserted replaced
10616:db8a2a027ef7 10617:9a75c8a1b8b1
1 *starting.txt* For Vim version 8.0. Last change: 2016 Nov 24 1 *starting.txt* For Vim version 8.0. Last change: 2017 Jan 15
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
228 reset with ":set noro" (see the options chapter, |options|). 228 reset with ":set noro" (see the options chapter, |options|).
229 Subsequent edits will not be done in readonly mode. Calling 229 Subsequent edits will not be done in readonly mode. Calling
230 the executable "view" has the same effect as the -R argument. 230 the executable "view" has the same effect as the -R argument.
231 The 'updatecount' option will be set to 10000, meaning that 231 The 'updatecount' option will be set to 10000, meaning that
232 the swap file will not be updated automatically very often. 232 the swap file will not be updated automatically very often.
233 See |-M| for disallowing modifications.
233 234
234 *-m* 235 *-m*
235 -m Modifications not allowed to be written. The 'write' option 236 -m Modifications not allowed to be written. The 'write' option
236 will be reset, so that writing files is disabled. However, 237 will be reset, so that writing files is disabled. However,
237 the 'write' option can be set to enable writing again. 238 the 'write' option can be set to enable writing again.
1217 - Close all windows with `:qall`. Only when there are no changes. 1218 - Close all windows with `:qall`. Only when there are no changes.
1218 - Close all windows with `:qall!`. Also when there are changes. 1219 - Close all windows with `:qall!`. Also when there are changes.
1219 - Use `:cquit`. Also when there are changes. 1220 - Use `:cquit`. Also when there are changes.
1220 1221
1221 When using `:cquit` or when there was an error message Vim exits with exit 1222 When using `:cquit` or when there was an error message Vim exits with exit
1222 code 1. Errors can be avoided by using `:silent!`. 1223 code 1. Errors can be avoided by using `:silent!` or with `:catch`.
1223 1224
1224 ============================================================================== 1225 ==============================================================================
1225 8. Saving settings *save-settings* 1226 8. Saving settings *save-settings*
1226 1227
1227 Mostly you will edit your vimrc files manually. This gives you the greatest 1228 Mostly you will edit your vimrc files manually. This gives you the greatest