summaryrefslogtreecommitdiff
path: root/src/completion.cc
blob: 7e570defd9c484fe22578da1f180c769bdb3f782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include "completion.hh"

#include "buffer_manager.hh"
#include "utils.hh"

#include <dirent.h>

namespace Kakoune
{

CandidateList complete_filename(const std::string& prefix,
                                size_t cursor_pos)
{
    std::string real_prefix = prefix.substr(0, cursor_pos);
    size_t dir_end = real_prefix.find_last_of('/');
    std::string dirname = "./";
    std::string fileprefix = real_prefix;

    if (dir_end != std::string::npos)
    {
        dirname = real_prefix.substr(0, dir_end + 1);
        fileprefix = real_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;
}

CandidateList complete_buffername(const std::string& prefix,
                                size_t cursor_pos)
{
    std::string real_prefix = prefix.substr(0, cursor_pos);
    CandidateList result;
    for (auto& buffer : BufferManager::instance())
    {
        if (buffer.name().substr(0, real_prefix.length()) == real_prefix)
            result.push_back(buffer.name());
    }
    return result;
}


}