#include "completion.hh" #include "utils.hh" #include namespace Kakoune { CandidateList complete_filename(const std::string& prefix) { size_t dir_end = prefix.find_last_of('/'); std::string dirname = "./"; std::string fileprefix = prefix; if (dir_end != std::string::npos) { dirname = prefix.substr(0, dir_end + 1); fileprefix = prefix.substr(dir_end + 1, std::string::npos); } auto dir = auto_raii(opendir(dirname.c_str()), closedir); CandidateList result; while (dirent* entry = readdir(dir)) { std::string filename = entry->d_name; if (filename.substr(0, fileprefix.length()) == fileprefix) result.push_back(filename); } return result; } }