0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

updated for version 7.0-230

This commit is contained in:
Bram Moolenaar
2007-04-26 15:06:45 +00:00
parent 4076b79afd
commit d267b9c167
4 changed files with 23 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
*eval.txt* For Vim version 7.0. Last change: 2006 Nov 01
*eval.txt* For Vim version 7.0. Last change: 2007 Apr 24
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1623,6 +1623,7 @@ glob( {expr}) String expand file wildcards in {expr}
globpath( {path}, {expr}) String do glob({expr}) for all dirs in {path}
has( {feature}) Number TRUE if feature {feature} supported
has_key( {dict}, {key}) Number TRUE if {dict} has entry {key}
haslocaldir() Number TRUE if current window executed |:lcd|
hasmapto( {what} [, {mode} [, {abbr}]])
Number TRUE if mapping to {what} exists
histadd( {history},{item}) String add an item to a history
@@ -3016,6 +3017,9 @@ has_key({dict}, {key}) *has_key()*
The result is a Number, which is 1 if |Dictionary| {dict} has
an entry with key {key}. Zero otherwise.
haslocaldir() *haslocaldir()*
The result is a Number, which is 1 when the current
window has set a local path via |:lcd|, and 0 otherwise.
hasmapto({what} [, {mode} [, {abbr}]]) *hasmapto()*
The result is a Number, which is 1 if there is a mapping that

View File

@@ -1,4 +1,4 @@
*usr_41.txt* For Vim version 7.0. Last change: 2006 Apr 30
*usr_41.txt* For Vim version 7.0. Last change: 2007 Apr 26
VIM USER MANUAL - by Bram Moolenaar
@@ -703,6 +703,7 @@ System functions and manipulation of files:
isdirectory() check if a directory exists
getfsize() get the size of a file
getcwd() get the current working directory
haslocaldir() check if current window used |:lcd|
tempname() get the name of a temporary file
mkdir() create a new directory
delete() delete a file