Completion: handle hidden files in complete_filenam
This commit is contained in:
parent
49ea6f7103
commit
f673f3c334
|
@ -30,12 +30,16 @@ CandidateList complete_filename(const std::string& prefix,
|
||||||
while (dirent* entry = readdir(dir))
|
while (dirent* entry = readdir(dir))
|
||||||
{
|
{
|
||||||
std::string filename = entry->d_name;
|
std::string filename = entry->d_name;
|
||||||
|
if (filename.empty())
|
||||||
|
continue;
|
||||||
|
|
||||||
if (filename.substr(0, fileprefix.length()) == fileprefix)
|
if (filename.substr(0, fileprefix.length()) == fileprefix)
|
||||||
{
|
{
|
||||||
std::string name = dirprefix + filename;
|
std::string name = dirprefix + filename;
|
||||||
if (entry->d_type == DT_DIR)
|
if (entry->d_type == DT_DIR)
|
||||||
name += '/';
|
name += '/';
|
||||||
result.push_back(name);
|
if (fileprefix.length() or filename[0] != '.')
|
||||||
|
result.push_back(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user