diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-03-27 08:19:43 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-03-27 08:19:43 +0000 |
commit | 5b6b1cae34a9e997bf185c269ba9e6be5b420008 (patch) | |
tree | cbdfdd983d5c79252ff5c3f6beb7b0ec6143e323 /runtime/doc/eval.txt | |
parent | 4940e3f2c300428bac27fc4bef24c0f8e4a64648 (diff) | |
download | vim-git-5b6b1cae34a9e997bf185c269ba9e6be5b420008.tar.gz |
updated for version 7.0-221v7.0.221
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 22421bb5c..ceb82ef11 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -2541,10 +2541,12 @@ filter({expr}, {string}) *filter()* finddir({name}[, {path}[, {count}]]) *finddir()* - Find directory {name} in {path}. Returns the path of the - first found match. When the found directory is below the - current directory a relative path is returned. Otherwise a - full path is returned. + Find directory {name} in {path}. Supports both downwards and + upwards recursive directory searches. See |file-searching| + for the syntax of {path}. + Returns the path of the first found match. When the found + directory is below the current directory a relative path is + returned. Otherwise a full path is returned. If {path} is omitted or empty then 'path' is used. If the optional {count} is given, find {count}'s occurrence of {name} in {path} instead of the first one. |