From eddf53b02e2b007208b19c74fb616be2c0839b36 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 27 Feb 2006 00:11:10 +0000 Subject: updated for version 7.0208 --- runtime/doc/todo.txt | 61 ++++++++++++++++++------------------------------ runtime/doc/usr_12.txt | 4 ++-- runtime/doc/version7.txt | 13 ++++++++++- 3 files changed, 37 insertions(+), 41 deletions(-) (limited to 'runtime') diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 7b60f76afd..00aa9b1cdf 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -1,4 +1,4 @@ -*todo.txt* For Vim version 7.0aa. Last change: 2006 Feb 25 +*todo.txt* For Vim version 7.0aa. Last change: 2006 Feb 26 VIM REFERENCE MANUAL by Bram Moolenaar @@ -30,49 +30,17 @@ be worked on, but only if you sponsor Vim development. See |sponsor|. *known-bugs* -------------------- Known bugs and current work ----------------------- -Tab pages: -- Add 'guitablabel' option. -- GTK GUI implementation for the tab pages line: - handling of tab in insert mode (like clicking mouse in other window) - and cmdline mode (keep current tab) - -9 GUI implementation for the tab pages line for other systems. -8 Make GUI menu in tab pages line configurable. Like the popup menu. -8 tab pages in the session file, if "tabpages" in 'sessionoptions' -8 :tabmove +N move tab page N pages forward -8 :tabmove -N move tab page N pages backward -7 :tabdup duplicate the tab with all its windows. -6 :tab ball tab page for each buffer -6 :tab all tab page for each argument -7 In GUI: right click can popup a menu to close a specific tab. -7 Option to put tab line at the left or right? Need an option to specify - its witdh. It's like a separate window with ":tabs" output. -7 Add local variables for each tab page? -8 Add local options for each tab page? E.g., 'diffopt' could differ between - tab pages. -7 Add local highlighting for a tab page? - -Spelling: m'n -> no suggestion for "mijn"? - -Add an argument to search functions to stop at a certain line number. - search('{', 'b', line('w0')) - search('{', '', line('w$')) -Also start at a specified position? - -undo could remember the '< and '> marks. +Script ID is only remembered for global options. Should remember it for every +local option separately. + Change PV_XXX values in separate ranges for buffer and window. + Move the enums to option.h so that the size is known in structs.h + use array for each window and buffer with scriptID values. Crash with X command server (Ciaran McCreesh). -Make virtcol([lnum, col]) work? - -"dip" in end empty lines at end of file leaves one line. (Matt Mzyzik) - Ctags still hasn't included the patch. Darren is looking for someone to do maintanance. -Script ID is only remembered for global options. Should remember it for every -local option separately. - "fsutil hardlink" can create a hard link on an NTFS file system. (Daniel Einspanjer) What library function can detect that? @@ -1391,6 +1359,23 @@ User Friendlier: global_event_filter() for GTK. +Tab pages: +9 GUI implementation for the tab pages line for other systems. +8 Make GUI menu in tab pages line configurable. Like the popup menu. +8 tab pages in the session file, if "tabpages" in 'sessionoptions' +8 :tabmove +N move tab page N pages forward +8 :tabmove -N move tab page N pages backward +7 :tabdup duplicate the tab with all its windows. +6 :tab ball tab page for each buffer +6 :tab all tab page for each argument +7 Option to put tab line at the left or right? Need an option to specify + its witdh. It's like a separate window with ":tabs" output. +7 Add local variables for each tab page? +8 Add local options for each tab page? E.g., 'diffopt' could differ between + tab pages. +7 Add local highlighting for each tab page? + + Spell checking: 9 Work together with OpenOffice.org to update the wordlists. (Adri Verhoef, Aad Nales) Setup vim-spell maillist? diff --git a/runtime/doc/usr_12.txt b/runtime/doc/usr_12.txt index 24d6101e34..b2530cc8b2 100644 --- a/runtime/doc/usr_12.txt +++ b/runtime/doc/usr_12.txt @@ -1,4 +1,4 @@ -*usr_12.txt* For Vim version 7.0aa. Last change: 2004 Dec 29 +*usr_12.txt* For Vim version 7.0aa. Last change: 2006 Feb 26 VIM USER MANUAL - by Bram Moolenaar @@ -273,7 +273,7 @@ To display a man page for the word under the cursor, use this: > For example, you want to know the return value of "strstr()" while editing this line: - if (strstr(input, "aap") == ) ~ + if ( strstr (input, "aap") == ) ~ Move the cursor to somewhere on "strstr" and type "\K". A window will open to display the man page for strstr(). diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt index 50d33dc318..29e8afc087 100644 --- a/runtime/doc/version7.txt +++ b/runtime/doc/version7.txt @@ -1,4 +1,4 @@ -*version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 25 +*version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 26 VIM REFERENCE MANUAL by Bram Moolenaar @@ -734,6 +734,9 @@ other Vim to the foreground. When starting Vim with a "-t tag" argument, there is an existing swapfile and the user selects "quit" or "abort" then exit Vim. +Undo now also restores the '< and '> marks. "gv" selects the same area as +before the change and undo. + ============================================================================== IMPROVEMENTS *improvements-7* @@ -948,6 +951,9 @@ Win32: Balloons can have multiple lines if common controls supports it. The 's' flag is added to the search() and searchpair() function to set the ' mark if the cursor is moved. (Yegappan Lakshmanan) +The search() and searchpair() functions have an extra argument to specify +where to stop searching. Speeds up searches that should not continue too far. + For 'errorformat' it was not possible to have a file name that contains the character that follows after "%f". For example, in "%f:%l:%m" the file name could not contain ":". Now include the first ":" where the rest of the @@ -1077,6 +1083,9 @@ Mac: When running "make install" the runtime files are installed as for Unix. Avoids that too many files are copied. When running "make" a link to the runtime files is created to avoid a recursive copy that takes much time. +Mac: Configure will attempt to build Vim for both Intel and PowerPC. The +--with-mac-arch configure argument can change it. + ============================================================================== BUG FIXES *bug-fixes-7* @@ -1756,4 +1765,6 @@ block could be unhighlighted. When counting words for the Visual block area and using "$" to select until the end of every line only up to the length of the last line was counted. +"dip" in trailing empty lines left one empty line behind. + vim:tw=78:ts=8:ft=help:norl: -- cgit v1.2.3