comparison runtime/doc/version7.txt @ 206:87857ffdbf46

updated for version 7.0060
author vimboss
date Tue, 15 Mar 2005 22:46:30 +0000
parents 3585d1a53fa5
children 0d6554dfc71e
comparison
equal deleted inserted replaced
205:d292c40ca788 206:87857ffdbf46
1 *version7.txt* For Vim version 7.0aa. Last change: 2005 Mar 11 1 *version7.txt* For Vim version 7.0aa. Last change: 2005 Mar 15
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
330 |reverse()| reverse the order of a List 330 |reverse()| reverse the order of a List
331 |sort()| sort a List 331 |sort()| sort a List
332 |split()| split a String into a List 332 |split()| split a String into a List
333 |string()| String representation of a List or Dictionary 333 |string()| String representation of a List or Dictionary
334 |system()| Filters {input} through a shell command. 334 |system()| Filters {input} through a shell command.
335 |taglist()| Get list of matching tags. (Yegappan Lakshmanan)
335 |tr()| Translate characters. (Ron Aaron) 336 |tr()| Translate characters. (Ron Aaron)
336 |values()| get List of Dictionary values 337 |values()| get List of Dictionary values
337 |writefile()| write a list of lines into a file 338 |writefile()| write a list of lines into a file
338 339
339 User defined functions can now be loaded automatically from the "autoload" 340 User defined functions can now be loaded automatically from the "autoload"
957 958
958 When setting 'ttymouse' to "dec" in an xterm that supports the DEC mouse 959 When setting 'ttymouse' to "dec" in an xterm that supports the DEC mouse
959 locator it doesn't work. Now switch off the mouse before selecting another 960 locator it doesn't work. Now switch off the mouse before selecting another
960 mouse model. 961 mouse model.
961 962
963 When the CursorHold event is triggered and the commands peek for typed
964 characters the typeahead buffer may be messed up, e.g., when a mouse-up event
965 is received. Avoid invoking the autocommands from the function waiting for a
966 character, let it put K_CURSORHOLD in the input buffer.
967
968 Removed the "COUNT" flag from ":argadd", to avoid ":argadd 1*" to be used like
969 ":1argadd *".
970
971 Avoid that $LANG is used for the menus when LC_MESSAGES is "en_US".
972
962 vim:tw=78:ts=8:ft=help:norl: 973 vim:tw=78:ts=8:ft=help:norl: