comparison runtime/doc/usr_05.txt @ 21676:1b345fb68ae3

Update runtime files. Commit: https://github.com/vim/vim/commit/e7b1ea0276cc83cd5c612f3189a174a60d57b5ed Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 7 19:54:59 2020 +0200 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Fri, 07 Aug 2020 20:00:05 +0200
parents 130acb903dbe
children d19b7aee1925
comparison
equal deleted inserted replaced
21675:49ed426f3fb5 21676:1b345fb68ae3
56 56
57 This initializes Vim for new users (as opposed to traditional Vi users). See 57 This initializes Vim for new users (as opposed to traditional Vi users). See
58 |defaults.vim| for the details. 58 |defaults.vim| for the details.
59 59
60 The vimrc file can contain all the commands that you type after a colon. The 60 The vimrc file can contain all the commands that you type after a colon. The
61 most simple ones are for setting options. For example, if you want Vim to 61 simplest ones are for setting options. For example, if you want Vim to always
62 always start with the 'incsearch' option on, add this line your vimrc file: > 62 start with the 'incsearch' option on, add this line your vimrc file: >
63 63
64 set incsearch 64 set incsearch
65 65
66 For this new line to take effect you need to exit Vim and start it again. 66 For this new line to take effect you need to exit Vim and start it again.
67 Later you will learn how to do this without exiting Vim. 67 Later you will learn how to do this without exiting Vim.