diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-08-19 20:32:47 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-08-19 20:32:47 +0000 |
commit | 5195e45609b26b3d262a90822a2283a4adcf65c9 (patch) | |
tree | 9ba1a4e7af2e732fa78e70e987b2677ddf943b07 /runtime/doc | |
parent | 5b8d8fdb526bd21dbac64a3ea815a1e628b93b41 (diff) | |
download | vim-git-5195e45609b26b3d262a90822a2283a4adcf65c9.tar.gz |
updated for version 7.0132
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/insert.txt | 9 | ||||
-rw-r--r-- | runtime/doc/map.txt | 10 |
2 files changed, 8 insertions, 11 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index 43b3d4f41..ae90eb954 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 Aug 11 +*insert.txt* For Vim version 7.0aa. Last change: 2005 Aug 17 VIM REFERENCE MANUAL by Bram Moolenaar @@ -899,8 +899,11 @@ CTRL-X CTRL-O Guess what kind of item is in front of the cursor and Spelling suggestions *compl-spelling* -The word in front of the cursor is located and correctly spelled words are -suggested to replace it. The word doesn't actually have to be badly spelled. +A word before or at the cursor is located and correctly spelled words are +suggested to replace it. If there is a badly spelled word in the line, before +or under the cursor, the cursor is moved to after it. Otherwise the word just +before the cursor is used for suggestions, even though it isn't badly spelled. + NOTE: CTRL-S suspends display in many Unix terminals. Use 's' instead. Type CTRL-Q to resume displaying. diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt index a135a481a..5fb03e916 100644 --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -281,10 +281,7 @@ last defined. Example: > n <C-W>* * <C-W><C-S>* Last set from /home/abcd/.vimrc -When the map was defined by hand there is no "Last set" message. When the map -was defined while executing a function, user command or autocommand, the -script in which it was defined is reported. -{not available when compiled without the +eval feature} +See |:verbose-cmd| for more information. *map_backslash* Note that only CTRL-V is mentioned here as a special character for mappings @@ -877,10 +874,7 @@ last defined. Example: > TOhtml 0 % :call Convert2HTML(<line1>, <line2>) Last set from /usr/share/vim/vim-7.0/plugin/tohtml.vim < -When the command was defined by hand there is no "Last set" message. When the -command was defined while executing a function, user command or autocommand, -the script in which it was defined is reported. -{not available when compiled without the +eval feature} +See |:verbose-cmd| for more information. *E174* *E182* :com[mand][!] [{attr}...] {cmd} {rep} |