diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-03-28 21:02:15 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-03-28 21:02:15 +0000 |
commit | b982ca5c882ff0aaee6c32f6be9a80084b774870 (patch) | |
tree | 12f127319e2940df2bf7279e58f16a4401f1a07b /runtime/doc | |
parent | 582fd85b02e50b2aba025ff522c04a2293a45985 (diff) | |
download | vim-b982ca5c882ff0aaee6c32f6be9a80084b774870.zip |
updated for version 7.0065
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/todo.txt | 10 | ||||
-rw-r--r-- | runtime/doc/version7.txt | 15 |
2 files changed, 17 insertions, 8 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 3464c83db..b8f86b207 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 25 +*todo.txt* For Vim version 7.0aa. Last change: 2005 Mar 28 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 ----------------------- -Check that xterm function keys XHOME and ZHOME do work. - -Wildcard expansion failure: ":w /tmp/$$.`echo test`" (Adri Verhoef) - Mac unicode patch (Da Woon Jung): - selecting proportional font breaks display - UTF-8 text causes display problems. Font replacement causes this. @@ -50,6 +46,9 @@ autoload: For the "helpfile" item ":helptags" is run. Win32: Balloon text can't contain line break. + Hints for multiline tooltips from Alexei Alexandrov (2005 Mar 26) + Patch from Sergey Khorev, 2005 Mar 28 + Add has("balloon_multiline") Awaiting response: - Patch for mch_FullName() also in Vim 6.3? os_mswin.c @@ -106,6 +105,7 @@ PLANNED FOR VERSION 7.0: like commands. - "INTELLISENSE". First cleanup the Insert-mode completion. http://www.vim.org/scripts/script.php?script_id=747 + www.vim.org script 1213 (Java Development Environment) (Fuchuan Wang) http://sourceforge.net/projects/insenvim of http://insenvim.sourceforge.net http://cedet.sourceforge.net/intellisense.shtml (for Emacs) diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt index 9657ca514..ec74a1040 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 24 +*version7.txt* For Vim version 7.0aa. Last change: 2005 Mar 28 VIM REFERENCE MANUAL by Bram Moolenaar @@ -323,7 +323,7 @@ New functions: ~ |count()| count nr of times a value is in a List or Dictionary |deepcopy()| make a full copy of a List or Dictionary |empty()| check if List or Dictionary is empty -|getqflist()| list of quickfix errors +|getqflist()| list of quickfix errors (Yegappan Lakshmanan) |extend()| append one List to another or add items from one Dictionary to another |filter()| remove selected items from a List or Dictionary @@ -351,7 +351,7 @@ New functions: ~ |remove()| remove one or more items from a List or Dictionary |repeat()| Repeat "expr" "count" times. (Christophe Poucet) |reverse()| reverse the order of a List -|setqflist()| create a quickfix list +|setqflist()| create a quickfix list (Yegappan Lakshmanan) |sort()| sort a List |split()| split a String into a List |string()| String representation of a List or Dictionary @@ -409,6 +409,10 @@ PHP compiler plugin. (Doug Kearns) Sive syntax file. (Nikolai Weibull) +Moved all the indent settings from the filetype plugin to the indent file. +Implemented b:undo_indent to undo indent settings when setting 'filetype' to a +different value. + New Keymaps: ~ @@ -607,6 +611,8 @@ modifiers. getwinvar() now also works to obtain a buffer-local option from the specified window. +Added the "%s" item to 'errorformat'. (Yegappan Lakshmanan) + ============================================================================== COMPILE TIME CHANGES *compile-changes-7* @@ -1017,4 +1023,7 @@ Don't insert a DBCS character with a NUL second byte. In Insert mode CTRL-O <Home> didn't move the cursor. Made "ins_at_eol" global and reset it in nv_home(). +Wildcard expansion failed: ":w /tmp/$$.`echo test`". Don't put quotes around +spaces inside backticks. + vim:tw=78:ts=8:ft=help:norl: |