Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
d267b9c1
Commit
d267b9c1
authored
17 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0-230
parent
4076b79a
Loading
Loading
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
runtime/doc/eval.txt
+5
-1
5 additions, 1 deletion
runtime/doc/eval.txt
runtime/doc/usr_41.txt
+2
-1
2 additions, 1 deletion
runtime/doc/usr_41.txt
src/eval.c
+14
-0
14 additions, 0 deletions
src/eval.c
src/version.c
+2
-0
2 additions, 0 deletions
src/version.c
with
23 additions
and
2 deletions
runtime/doc/eval.txt
+
5
−
1
View file @
d267b9c1
*eval.txt* For Vim version 7.0. Last change: 200
6 Nov 01
*eval.txt* For Vim version 7.0. Last change: 200
7 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
...
...
This diff is collapsed.
Click to expand it.
runtime/doc/usr_41.txt
+
2
−
1
View file @
d267b9c1
*usr_41.txt* For Vim version 7.0. Last change: 200
6
Apr
30
*usr_41.txt* For Vim version 7.0. Last change: 200
7
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
...
...
This diff is collapsed.
Click to expand it.
src/eval.c
+
14
−
0
View file @
d267b9c1
...
...
@@ -541,6 +541,7 @@ static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
...
...
@@ -7110,6 +7111,7 @@ static struct fst
{"globpath", 2, 2, f_globpath},
{"has", 1, 1, f_has},
{"has_key", 2, 2, f_has_key},
{"haslocaldir", 0, 0, f_haslocaldir},
{"hasmapto", 1, 3, f_hasmapto},
{"highlightID", 1, 1, f_hlID}, /* obsolete */
{"highlight_exists",1, 1, f_hlexists}, /* obsolete */
...
...
@@ -11133,6 +11135,18 @@ f_has_key(argvars, rettv)
get_tv_string(&argvars[1]), -1) != NULL;
}
/*
* "haslocaldir()" function
*/
/*ARGSUSED*/
static void
f_haslocaldir(argvars, rettv)
typval_T *argvars;
typval_T *rettv;
{
rettv->vval.v_number = (curwin->w_localdir != NULL);
}
/*
* "hasmapto()" function
*/
...
...
This diff is collapsed.
Click to expand it.
src/version.c
+
2
−
0
View file @
d267b9c1
...
...
@@ -666,6 +666,8 @@ static char *(features[]) =
static
int
included_patches
[]
=
{
/* Add new patch number below this line */
/**/
230
,
/**/
229
,
/**/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment