comparison runtime/doc/starting.txt @ 294:1c1cbdc42f75 v7.0077

updated for version 7.0077
author vimboss
date Tue, 31 May 2005 22:22:17 +0000
parents a4d1fd572d07
children 6b49757d378c
comparison
equal deleted inserted replaced
293:f811be6fa9b5 294:1c1cbdc42f75
1 *starting.txt* For Vim version 7.0aa. Last change: 2005 Apr 18 1 *starting.txt* For Vim version 7.0aa. Last change: 2005 May 31
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
310 -V[N] Verbose. Sets the 'verbose' option to [N] (default: 10). 310 -V[N] Verbose. Sets the 'verbose' option to [N] (default: 10).
311 Messages will be given for each file that is ":source"d and 311 Messages will be given for each file that is ":source"d and
312 for reading or writing a viminfo file. Can be used to find 312 for reading or writing a viminfo file. Can be used to find
313 out what is happening upon startup and exit. {not in Vi} 313 out what is happening upon startup and exit. {not in Vi}
314 314
315 -V[N]{filename}
316 Like -V and set 'verbosefile' to {filename}. The result is
317 that messages are not displayed but written to the file
318 {filename}. {filename} must not start with a digit.
319
315 *-D* 320 *-D*
316 -D Debugging. Go to debugging mode when executing the first 321 -D Debugging. Go to debugging mode when executing the first
317 command from a script. |debug-mode| 322 command from a script. |debug-mode|
318 {not available when compiled without the |+eval| feature} 323 {not available when compiled without the |+eval| feature}
319 {not in Vi} 324 {not in Vi}
704 option. 709 option.
705 710
706 2. Process the arguments 711 2. Process the arguments
707 The options and file names from the command that start Vim are 712 The options and file names from the command that start Vim are
708 inspected. Buffers are created for all files (but not loaded yet). 713 inspected. Buffers are created for all files (but not loaded yet).
714 The |-V| argument can be used to display or log what happens next,
715 useful for debugging the initializations.
709 716
710 3. Execute Ex commands, from environment variables and/or files 717 3. Execute Ex commands, from environment variables and/or files
711 An environment variable is read as one Ex command line, where multiple 718 An environment variable is read as one Ex command line, where multiple
712 commands must be separated with '|' or "<NL>". 719 commands must be separated with '|' or "<NL>".
713 *vimrc* *exrc* 720 *vimrc* *exrc*