diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-02-12 14:29:27 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-02-12 14:29:27 +0000 |
commit | 4399ef4764584a24080670b4869cb8b5d31a4f78 (patch) | |
tree | c47e4671d16eeeadc9aa0b9a9cb19576e7c653b9 /runtime/doc/insert.txt | |
parent | b11bd7e43f6cdca944dceebaa3c8012d6bf1a74e (diff) | |
download | vim-git-4399ef4764584a24080670b4869cb8b5d31a4f78.tar.gz |
updated for version 7.0050
Diffstat (limited to 'runtime/doc/insert.txt')
-rw-r--r-- | runtime/doc/insert.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index 74b68e16a..fad968f44 100644 --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -1,4 +1,4 @@ -*insert.txt* For Vim version 7.0aa. Last change: 2005 Jan 26 +*insert.txt* For Vim version 7.0aa. Last change: 2005 Feb 08 VIM REFERENCE MANUAL by Bram Moolenaar @@ -922,6 +922,9 @@ i Insert text before the cursor [count] times. *I* I Insert text before the first non-blank in the line [count] times. + When the 'H' flag is present in 'cpoptions' and the + line only contains blanks, insert start just before + the last blank. *gI* gI Insert text in column 1 [count] times. {not in Vi} @@ -941,11 +944,15 @@ gi Insert text in the same position as where Insert mode o Begin a new line below the cursor and insert text, repeat [count] times. {Vi: blank [count] screen lines} + When the '#' flag is in 'cpoptions' the count is + ignored. *O* O Begin a new line above the cursor and insert text, repeat [count] times. {Vi: blank [count] screen lines} + When the '#' flag is in 'cpoptions' the count is + ignored. These commands are used to start inserting text. You can end insert mode with <Esc>. See |mode-ins-repl| for the other special characters in Insert mode. |