comparison runtime/doc/insert.txt @ 164:8b0ee9d57d7f

updated for version 7.0050
author vimboss
date Sat, 12 Feb 2005 14:29:27 +0000
parents 8ecb0db93e9a
children c93c9cad9618
comparison
equal deleted inserted replaced
163:06bc859d1a32 164:8b0ee9d57d7f
1 *insert.txt* For Vim version 7.0aa. Last change: 2005 Jan 26 1 *insert.txt* For Vim version 7.0aa. Last change: 2005 Feb 08
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
920 is not supported. 920 is not supported.
921 921
922 *I* 922 *I*
923 I Insert text before the first non-blank in the line 923 I Insert text before the first non-blank in the line
924 [count] times. 924 [count] times.
925 When the 'H' flag is present in 'cpoptions' and the
926 line only contains blanks, insert start just before
927 the last blank.
925 928
926 *gI* 929 *gI*
927 gI Insert text in column 1 [count] times. {not in Vi} 930 gI Insert text in column 1 [count] times. {not in Vi}
928 931
929 *gi* 932 *gi*
939 942
940 *o* 943 *o*
941 o Begin a new line below the cursor and insert text, 944 o Begin a new line below the cursor and insert text,
942 repeat [count] times. {Vi: blank [count] screen 945 repeat [count] times. {Vi: blank [count] screen
943 lines} 946 lines}
947 When the '#' flag is in 'cpoptions' the count is
948 ignored.
944 949
945 *O* 950 *O*
946 O Begin a new line above the cursor and insert text, 951 O Begin a new line above the cursor and insert text,
947 repeat [count] times. {Vi: blank [count] screen 952 repeat [count] times. {Vi: blank [count] screen
948 lines} 953 lines}
954 When the '#' flag is in 'cpoptions' the count is
955 ignored.
949 956
950 These commands are used to start inserting text. You can end insert mode with 957 These commands are used to start inserting text. You can end insert mode with
951 <Esc>. See |mode-ins-repl| for the other special characters in Insert mode. 958 <Esc>. See |mode-ins-repl| for the other special characters in Insert mode.
952 The effect of [count] takes place after Insert mode is exited. 959 The effect of [count] takes place after Insert mode is exited.
953 960