Merge pull request #31 from posener/improves

predict files: remove loop
This commit is contained in:
Eyal Posener 2017-05-20 09:19:13 +03:00 committed by GitHub
commit bc002bd8a7
1 changed files with 13 additions and 21 deletions

View File

@ -30,29 +30,21 @@ func files(pattern string, allowFiles bool) PredictFunc {
// if only one directory has matched the result, search recursively into
// this directory to give more results.
return func(a Args) (prediction []string) {
for {
prediction = predictFiles(a, pattern, allowFiles)
prediction = predictFiles(a, pattern, allowFiles)
// if the number of prediction is not 1, we either have many results or
// have no results, so we return it.
if len(prediction) != 1 {
return
}
// if the result is only one item, we might want to recursively check
// for more accurate results.
if prediction[0] == a.Last {
return
}
// only try deeper, if the one item is a directory
if stat, err := os.Stat(prediction[0]); err != nil || !stat.IsDir() {
return
}
a.Last = prediction[0]
// if the number of prediction is not 1, we either have many results or
// have no results, so we return it.
if len(prediction) != 1 {
return
}
// only try deeper, if the one item is a directory
if stat, err := os.Stat(prediction[0]); err != nil || !stat.IsDir() {
return
}
a.Last = prediction[0]
return predictFiles(a, pattern, allowFiles)
}
}