comparison runtime/doc/insert.txt @ 74:1154524da1cd

updated for version 7.0031
author vimboss
date Wed, 05 Jan 2005 22:10:30 +0000
parents f1d2a58883b9
children 8ecb0db93e9a
comparison
equal deleted inserted replaced
73:cbd631b28f36 74:1154524da1cd
1 *insert.txt* For Vim version 7.0aa. Last change: 2004 Dec 21 1 *insert.txt* For Vim version 7.0aa. Last change: 2005 Jan 05
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
973 973
974 These two commands will keep on asking for lines, until you type a line 974 These two commands will keep on asking for lines, until you type a line
975 containing only a ".". Watch out for lines starting with a backslash, see 975 containing only a ".". Watch out for lines starting with a backslash, see
976 |line-continuation|. 976 |line-continuation|.
977 NOTE: ":append" and ":insert" don't work properly in between ":if" and 977 NOTE: ":append" and ":insert" don't work properly in between ":if" and
978 ":endif". 978 ":endif", ":for" and ":endfor", ":while" and ":endwhile".
979 979
980 *:start* *:startinsert* 980 *:start* *:startinsert*
981 :star[tinsert][!] Start Insert mode just after executing this command. 981 :star[tinsert][!] Start Insert mode just after executing this command.
982 Works like typing "i" in Normal mode. When the ! is 982 Works like typing "i" in Normal mode. When the ! is
983 included it works like "A", append to the line. 983 included it works like "A", append to the line.