comparison runtime/doc/starting.txt @ 8748:b1a19a2f73f0

commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 26 23:01:59 2016 +0100 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Sun, 27 Mar 2016 15:15:06 +0200
parents 4c6ad81d41fe
children 47f17f66da3d
comparison
equal deleted inserted replaced
8747:fd9a1d2cc956 8748:b1a19a2f73f0
1 *starting.txt* For Vim version 7.4. Last change: 2016 Mar 05 1 *starting.txt* For Vim version 7.4. Last change: 2016 Mar 26
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
864 Note that using "-c 'set noloadplugins'" doesn't work, because the 864 Note that using "-c 'set noloadplugins'" doesn't work, because the
865 commands from the command line have not been executed yet. You can 865 commands from the command line have not been executed yet. You can
866 use "--cmd 'set noloadplugins'" |--cmd|. 866 use "--cmd 'set noloadplugins'" |--cmd|.
867 867
868 Plugin packs are loaded. These are plugins, as above, but found in 868 Plugin packs are loaded. These are plugins, as above, but found in
869 'packpath' directories. Every plugin directory found is added in 869 'packpath' "start" directories. Every plugin directory found is added
870 'runtimepath'. See |packages|. 870 in 'runtimepath'. See |packages|.
871 871
872 5. Set 'shellpipe' and 'shellredir' 872 5. Set 'shellpipe' and 'shellredir'
873 The 'shellpipe' and 'shellredir' options are set according to the 873 The 'shellpipe' and 'shellredir' options are set according to the
874 value of the 'shell' option, unless they have been set before. 874 value of the 'shell' option, unless they have been set before.
875 This means that Vim will figure out the values of 'shellpipe' and 875 This means that Vim will figure out the values of 'shellpipe' and
903 Buffers for all windows will be loaded. 903 Buffers for all windows will be loaded.
904 904
905 12. Execute startup commands 905 12. Execute startup commands
906 If a "-t" flag was given to Vim, the tag is jumped to. 906 If a "-t" flag was given to Vim, the tag is jumped to.
907 The commands given with the |-c| and |+cmd| arguments are executed. 907 The commands given with the |-c| and |+cmd| arguments are executed.
908 If the 'insertmode' option is set, Insert mode is entered.
908 The starting flag is reset, has("vim_starting") will now return zero. 909 The starting flag is reset, has("vim_starting") will now return zero.
909 If the 'insertmode' option is set, Insert mode is entered. 910 The |v:vim_did_enter| variable is set to 1.
910 The |VimEnter| autocommands are executed. 911 The |VimEnter| autocommands are executed.
911 912
912 Some hints on using initializations: 913 Some hints on using initializations:
913 914
914 Standard setup: 915 Standard setup: