summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/todo.txt16
-rw-r--r--runtime/doc/version7.txt14
2 files changed, 17 insertions, 13 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index d4d004239..630110752 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 Mar 06
+*todo.txt* For Vim version 7.0aa. Last change: 2005 Mar 07
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -35,14 +35,11 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
Doesn't work: may send wrong escape sequence to terminal, because mouse
type already changed when calling mch_setmouse(FALSE).
-Remove code for out-of-stack checks.
-Verify non-recursive regmatch() is OK with example from Michaelis.
-
Mac unicode patch (Da Woon Jung):
- selecting proportional font breaks display
-- UTF-8 text causes display problems. Character width wrong?
+- UTF-8 text causes display problems. Font replacement causes this.
-Patch for gettags(). Yegappan Lakshmanan Feb 27
+Patch for taglist() Yegappan Lakshmanan Feb 27
- docs: use of ^ and $ in pattern, refer to |tag-regexp|
explain what the fields mean.
use of 'tags' option
@@ -58,9 +55,7 @@ autoload:
helpfile doc/myscript.txt
For the "helpfile" item ":helptags" is run.
-Patch for 'balloonexpr' option. Sergey Khorev, Feb 26. Addition Feb 27.
-
-Patch for "paranoid mode" by Kevin Collins, March 3. Later updated.
+Patch for "paranoid mode" by Kevin Collins, March 7. Needs more work.
Awaiting response:
- Patch for mch_FullName() also in Vim 6.3? os_mswin.c
@@ -70,9 +65,6 @@ Awaiting response:
PLANNED FOR VERSION 7.0:
-- new DATA TYPES:
- - None? (or use empty string?)
- See ~/vim/ideas.txt.
- Add SPELLCHECKER, with easy to add support for many languages.
8 Add spell checking. Use "ispell -a" somehow.
~/vim/patches/wm_vim-5_4d.zip can be used as an example (includes
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index 3d2efa07f..d69214689 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 Mar 06
+*version7.txt* For Vim version 7.0aa. Last change: 2005 Mar 07
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -23,6 +23,7 @@ KDE support |new-KDE|
Translated manual pages |new-manpage-trans|
Internal grep |new-vimgrep|
POSIX compatibility |new-posix|
+Debugger support |new-debug-support|
Various new items |new-items-7|
IMPROVEMENTS |improvements-7|
@@ -220,6 +221,14 @@ Items that were fixed for both Vi and POSIX compatibilty:
- Implemented the 'prompt' option.
+Debugger support *new-debug-support*
+----------------
+
+The 'balloonexpr' option has been added. This is a generic way to implement
+balloon functionality. You can use it to show info for the word under the
+mouse pointer.
+
+
Various new items *new-items-7*
-----------------
@@ -927,4 +936,7 @@ unicodepdy[] as for UTF-8. (Taro Muraoka)
":w fname" didn't work for files with 'buftype' set to "nofile".
+The method used to locate user commands for completion differed from when they
+are executed. Abiguous command names were not completed properly.
+
vim:tw=78:ts=8:ft=help:norl: