diff options
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/autocmd.txt | 4 | ||||
-rw-r--r-- | runtime/doc/todo.txt | 13 | ||||
-rw-r--r-- | runtime/doc/version7.txt | 9 |
3 files changed, 16 insertions, 10 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index 5d49e8422..28edb4d4b 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -1,4 +1,4 @@ -*autocmd.txt* For Vim version 7.0aa. Last change: 2005 Dec 11 +*autocmd.txt* For Vim version 7.0aa. Last change: 2005 Dec 18 VIM REFERENCE MANUAL by Bram Moolenaar @@ -447,6 +447,8 @@ CursorHold When the user doesn't press a key for the time make some coffee. :) See |CursorHold-example| for previewing tags. This event is only triggered in Normal mode. + While recording the CursorHold event is not + triggered. |q| Note: Interactive commands cannot be used for this event. There is no hit-enter prompt, the screen is updated directly (when needed). diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index b7c299231..8b27dde47 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -1,4 +1,4 @@ -*todo.txt* For Vim version 7.0aa. Last change: 2005 Dec 17 +*todo.txt* For Vim version 7.0aa. Last change: 2005 Dec 18 VIM REFERENCE MANUAL by Bram Moolenaar @@ -30,10 +30,6 @@ be worked on, but only if you sponsor Vim development. See |sponsor|. *known-bugs* -------------------- Known bugs and current work ----------------------- -When 'delcombine' is set in Select mode before a character with a combining -char the combining char is deleted when it shouldn't. (Tony Mechelynck, Nov -27) - ccomplete: - When an option is set: In completion mode and the user types (identifier) characters, advance to the first match instead of removing the popup menu. @@ -41,10 +37,11 @@ ccomplete: - Complete the longest common match instead of the first match? For all kinds of completions? Configurable? - !_TAG_FILE_FORMAT and it's ilk are listed in the global completions -- When completing something that is a structure, add the "." or "->". -- When a typedef or struct is local to a file only use it in that file? + Can't reproduce it right now... - Window resize when poup is displayed -- page-up / page-down +- When completing something that is a structure, add the "." or "->" right + away. How to figure out if it's a pointer or not? +- When a typedef or struct is local to a file only use it in that file? spelling: - Use KEEPCASE instead of "KEP". It applies to the word including affixes diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt index cdc81d5a9..b886ead10 100644 --- a/runtime/doc/version7.txt +++ b/runtime/doc/version7.txt @@ -1,4 +1,4 @@ -*version7.txt* For Vim version 7.0aa. Last change: 2005 Dec 17 +*version7.txt* For Vim version 7.0aa. Last change: 2005 Dec 18 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1499,4 +1499,11 @@ When inside input(), using "CTRL-R =" and the expression throws an exception the command line was not abandoned but it wasn't used either. Now abandon typing the command line. +'delcombine' was also used in Visual and Select mode and for commands like +"cl". That was illogical and has been disabled. + +When recording while a CursorHold autocommand was defined special keys would +appear in the register. Now the CursorHold event is not triggered while +recording. + vim:tw=78:ts=8:ft=help:norl: |