mirror of
				https://github.com/vim/vim.git
				synced 2025-10-30 09:47:20 -04:00 
			
		
		
		
	updated for version 7.0036
This commit is contained in:
		| @@ -1,4 +1,4 @@ | |||||||
| *todo.txt*      For Vim version 7.0aa.  Last change: 2005 Jan 08 | *todo.txt*      For Vim version 7.0aa.  Last change: 2005 Jan 09 | ||||||
|  |  | ||||||
|  |  | ||||||
| 		  VIM REFERENCE MANUAL	  by Bram Moolenaar | 		  VIM REFERENCE MANUAL	  by Bram Moolenaar | ||||||
| @@ -32,6 +32,17 @@ be worked on, but only if you sponsor Vim development.  See |sponsor|. | |||||||
|  |  | ||||||
| Use 'ignorecase' for ":vimgrep"? | Use 'ignorecase' for ":vimgrep"? | ||||||
|  |  | ||||||
|  | List: | ||||||
|  | - map() function:     map(list, 'some . & . thing')? | ||||||
|  | - filter() function:  filter(list, '& !~ "^\\s*$"')? | ||||||
|  | - searchlist() function: like index() but with a regexp. | ||||||
|  | - Make string() work so that a list can be parsed back? | ||||||
|  | - Add List functions to version7.txt. | ||||||
|  | - Add List functions to overview of funtions in user manual. | ||||||
|  | - Explain Lists in the user manual? | ||||||
|  |  | ||||||
|  | Better way to get temp file for tcltags and vimspell scripts. (javier Pena) | ||||||
|  |  | ||||||
| When allocating a new variable, a search is done for an empty entry.  May | When allocating a new variable, a search is done for an empty entry.  May | ||||||
| waste a lot of time if there isn't one.  Keep an index of available entry, | waste a lot of time if there isn't one.  Keep an index of available entry, | ||||||
| none available, or unknown. | none available, or unknown. | ||||||
|   | |||||||
| @@ -1,4 +1,4 @@ | |||||||
| *version7.txt*  For Vim version 7.0aa.  Last change: 2005 Jan 05 | *version7.txt*  For Vim version 7.0aa.  Last change: 2005 Jan 09 | ||||||
|  |  | ||||||
|  |  | ||||||
| 		  VIM REFERENCE MANUAL    by Bram Moolenaar | 		  VIM REFERENCE MANUAL    by Bram Moolenaar | ||||||
| @@ -647,4 +647,8 @@ the window.  Now remove empty lines instead of keeping the relative position. | |||||||
|  |  | ||||||
| Cmdline completion didn't work after ":let var1 var<Tab>". | Cmdline completion didn't work after ":let var1 var<Tab>". | ||||||
|  |  | ||||||
|  | When using ":startinsert" or ":startreplace" when already in Insert mode | ||||||
|  | (possible when using CTRL-R =), pressing Esc would directly restart Insert | ||||||
|  | mode. (Peter Winters) | ||||||
|  |  | ||||||
|  vim:tw=78:ts=8:ft=help:norl: |  vim:tw=78:ts=8:ft=help:norl: | ||||||
|   | |||||||
| @@ -67,7 +67,7 @@ BEGIN | |||||||
| 	VALUE "FileDescription",	"Vi Improved - A Text Editor\0" | 	VALUE "FileDescription",	"Vi Improved - A Text Editor\0" | ||||||
| 	VALUE "FileVersion",		VIM_VERSION_MAJOR_STR ", " VIM_VERSION_MINOR_STR ", " VIM_VERSION_BUILD_STR ", " VIM_VERSION_PATCHLEVEL_STR  "\0" | 	VALUE "FileVersion",		VIM_VERSION_MAJOR_STR ", " VIM_VERSION_MINOR_STR ", " VIM_VERSION_BUILD_STR ", " VIM_VERSION_PATCHLEVEL_STR  "\0" | ||||||
| 	VALUE "InternalName",		"VIM\0" | 	VALUE "InternalName",		"VIM\0" | ||||||
| 	VALUE "LegalCopyright",		"Copyright \251 1996-1999\0" | 	VALUE "LegalCopyright",		"Copyright \251 1996-2005\0" | ||||||
| 	VALUE "LegalTrademarks",	"Vim\0" | 	VALUE "LegalTrademarks",	"Vim\0" | ||||||
| 	VALUE "OriginalFilename",	"VIM.EXE\0" | 	VALUE "OriginalFilename",	"VIM.EXE\0" | ||||||
| 	VALUE "ProductName",		"Vim\0" | 	VALUE "ProductName",		"Vim\0" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user