diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-03-15 22:46:30 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-03-15 22:46:30 +0000 |
commit | fb26980c317c19f68e16e587fde88880e4e1e4ad (patch) | |
tree | feb44f180bcd6bfd83a2e6591ac42e1462719207 /runtime | |
parent | e2cc9702a6ddb033ea289a1269f14e7ae076c3ef (diff) | |
download | vim-git-fb26980c317c19f68e16e587fde88880e4e1e4ad.tar.gz |
updated for version 7.0060
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/version7.txt | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt index 0a854f213..ec5a9c9c1 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 11 +*version7.txt* For Vim version 7.0aa. Last change: 2005 Mar 15 VIM REFERENCE MANUAL by Bram Moolenaar @@ -332,6 +332,7 @@ New functions: ~ |split()| split a String into a List |string()| String representation of a List or Dictionary |system()| Filters {input} through a shell command. +|taglist()| Get list of matching tags. (Yegappan Lakshmanan) |tr()| Translate characters. (Ron Aaron) |values()| get List of Dictionary values |writefile()| write a list of lines into a file @@ -959,4 +960,14 @@ When setting 'ttymouse' to "dec" in an xterm that supports the DEC mouse locator it doesn't work. Now switch off the mouse before selecting another mouse model. +When the CursorHold event is triggered and the commands peek for typed +characters the typeahead buffer may be messed up, e.g., when a mouse-up event +is received. Avoid invoking the autocommands from the function waiting for a +character, let it put K_CURSORHOLD in the input buffer. + +Removed the "COUNT" flag from ":argadd", to avoid ":argadd 1*" to be used like +":1argadd *". + +Avoid that $LANG is used for the menus when LC_MESSAGES is "en_US". + vim:tw=78:ts=8:ft=help:norl: |