0
0
mirror of https://github.com/vim/vim.git synced 2025-09-04 21:33:48 -04:00

updated for version 7.0047

This commit is contained in:
Bram Moolenaar 2005-02-02 23:09:45 +00:00
parent 6ac5429d3b
commit f583668da1
3 changed files with 8 additions and 13 deletions

View File

@ -1,4 +1,4 @@
*todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 31 *todo.txt* For Vim version 7.0aa. Last change: 2005 Feb 02
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -30,17 +30,10 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs* *known-bugs*
-------------------- Known bugs and current work ----------------------- -------------------- Known bugs and current work -----------------------
List data type performance:
- Cache the length of a List?
- Cache the last used index?
- Use blocks of items, so that finding an item by index is faster?
Can ":grep" made faster somehow? Do profiling.
":vimgrep pat %" doesn't work.
Sanity check of eval.c: Sanity check of eval.c:
- Go through the code for magic braces.
- Check use of v_type for VAR_FUNC, VAR_LIST ad VAR_DICT. - Check use of v_type for VAR_FUNC, VAR_LIST ad VAR_DICT.
- Go through the code for magic braces.
- Check list watchers.
Mention rsync command on runtime.php page: Mention rsync command on runtime.php page:
rsync -avzcP --delete --exclude="dos" --delete-excluded ftp.nluug.nl::Vim/runtime/ vim63-runtime rsync -avzcP --delete --exclude="dos" --delete-excluded ftp.nluug.nl::Vim/runtime/ vim63-runtime

View File

@ -1,4 +1,4 @@
*version7.txt* For Vim version 7.0aa. Last change: 2005 Jan 31 *version7.txt* For Vim version 7.0aa. Last change: 2005 Feb 01
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -722,4 +722,6 @@ starts with "sl".
When 'paste' is set in the GUI the Paste toolbar button doesn't work. Clear When 'paste' is set in the GUI the Paste toolbar button doesn't work. Clear
'paste' when starting the GUI. 'paste' when starting the GUI.
A message about a wrong viminfo line included the trailing NL.
vim:tw=78:ts=8:ft=help:norl: vim:tw=78:ts=8:ft=help:norl:

View File

@ -2469,7 +2469,7 @@ mainerr(n, str)
#endif #endif
mch_errmsg(longVersion); mch_errmsg(longVersion);
mch_errmsg("\n"); mch_errmsg("\r\n");
mch_errmsg(_(main_errors[n])); mch_errmsg(_(main_errors[n]));
if (str != NULL) if (str != NULL)
{ {
@ -2477,7 +2477,7 @@ mainerr(n, str)
mch_errmsg((char *)str); mch_errmsg((char *)str);
mch_errmsg("\""); mch_errmsg("\"");
} }
mch_errmsg(_("\nMore info with: \"vim -h\"\n")); mch_errmsg(_("\nMore info with: \"vim -h\"\r\n"));
mch_exit(1); mch_exit(1);
} }