diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-12-18 22:10:00 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-12-18 22:10:00 +0000 |
commit | e3226be91a18160dcae6aefc240bf1d687bcd2a2 (patch) | |
tree | 038f14a1dc33c2598be03b661a0b7d6194001fca /runtime | |
parent | d35f9711d4558f8784e65531a152d38d1dabbe72 (diff) | |
download | vim-git-e3226be91a18160dcae6aefc240bf1d687bcd2a2.tar.gz |
updated for version 7.0173v7.0173
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/autoload/ccomplete.vim | 4 | ||||
-rw-r--r-- | runtime/doc/autocmd.txt | 4 | ||||
-rw-r--r-- | runtime/doc/todo.txt | 13 | ||||
-rw-r--r-- | runtime/doc/version7.txt | 9 |
4 files changed, 18 insertions, 12 deletions
diff --git a/runtime/autoload/ccomplete.vim b/runtime/autoload/ccomplete.vim index a2210d71b..f804710b3 100644 --- a/runtime/autoload/ccomplete.vim +++ b/runtime/autoload/ccomplete.vim @@ -1,7 +1,7 @@ " Vim completion script " Language: C " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2005 Oct 06 +" Last Change: 2005 Dec 18 " This function is used for the 'omnifunc' option. @@ -87,7 +87,7 @@ function! ccomplete#Complete(findstart, base) if diclist[i]['kind'] == 'v' let line = diclist[i]['cmd'] if line[0] == '/' && line[1] == '^' - let col = match(line, items[0]) + let col = match(line, '\<' . items[0] . '\>') call extend(res, s:Nextitem(strpart(line, 2, col - 2), items[1:])) endif endif 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: |