updated for version 7.0g03

This commit is contained in:
Bram Moolenaar
2006-05-04 21:57:11 +00:00
parent 1471681726
commit 54a709eb08
4 changed files with 48 additions and 11 deletions

View File

@ -1,4 +1,4 @@
*todo.txt* For Vim version 7.0g. Last change: 2006 May 03
*todo.txt* For Vim version 7.0g. Last change: 2006 May 04
VIM REFERENCE MANUAL by Bram Moolenaar
@ -30,6 +30,15 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
-------------------- Known bugs and current work -----------------------
Cursor moved while evaluating balloonexpr. (Neil Bird)
Change exists() not to ignore non-isk chars after the recognized word. (Benji
Fisher)
GTK1: tab page labels don't work. (Helmut Schellong)
Test 61 fails sometimes.
indent/html.vim doesn't restore 'ignorecase' and 'cpo'.
@ -195,10 +204,6 @@ GTK+ GUI known bugs:
8 GTK 2: Combining UTF-8 characters not displayed properly in menus (Mikolaj
Machowski) They are displayed as separate characters. Problem in
creating a label?
8 GTK2: selecting button in confirm dialog with keys and hitting Enter
doesn't select that button. (Steve Hall)
It's possible to set the default button but it's not clear how to obtain
the currently selected (highlighted) button.
8 GTK 2: Combining UTF-8 characters are sometimes not drawn properly.
Depends on the font size, "monospace 13" has the problem. Vim seems to do
everything right, must be a GTK bug. Is there a way to work around it?
@ -1497,8 +1502,6 @@ Built-in script language:
to avoid a performance penalty (esp. for string options)?
8 Add referring to key options with "&t_xx". Both for "echo &t_xx" and
":let &t_xx =". Useful for making portable mappings.
8 exists("&&option") tests if 'option' is actually implemented. Useful for
'shellslash', for example.
- Add "{range}source": execute lines from a buffer.
Alternative: Allow range for ":exec", pass it on to the executed command.
(Webb)