2011-09-14 17:41:56 +02:00
|
|
|
#ifndef completion_hh_INCLUDED
|
|
|
|
#define completion_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2011-10-11 00:38:58 +02:00
|
|
|
#include <functional>
|
2011-09-14 17:41:56 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
typedef std::vector<std::string> CandidateList;
|
|
|
|
|
|
|
|
struct Completions
|
|
|
|
{
|
|
|
|
CandidateList candidates;
|
|
|
|
size_t start;
|
|
|
|
size_t end;
|
|
|
|
|
2011-09-14 21:15:09 +02:00
|
|
|
Completions()
|
|
|
|
: start(0), end(0) {}
|
|
|
|
|
2011-09-14 17:41:56 +02:00
|
|
|
Completions(size_t start, size_t end)
|
|
|
|
: start(start), end(end) {}
|
|
|
|
};
|
|
|
|
|
2011-09-16 11:17:55 +02:00
|
|
|
CandidateList complete_filename(const std::string& prefix,
|
|
|
|
size_t cursor_pos = std::string::npos);
|
2011-09-14 17:41:56 +02:00
|
|
|
|
2011-10-11 00:38:58 +02:00
|
|
|
typedef std::function<Completions (const std::string&, size_t)> Completer;
|
|
|
|
|
2011-11-10 21:57:25 +01:00
|
|
|
inline Completions complete_nothing(const std::string&, size_t cursor_pos)
|
2011-10-11 00:38:58 +02:00
|
|
|
{
|
2011-11-10 21:57:25 +01:00
|
|
|
return Completions(cursor_pos, cursor_pos);
|
|
|
|
}
|
2011-10-11 00:38:58 +02:00
|
|
|
|
2011-09-14 17:41:56 +02:00
|
|
|
}
|
|
|
|
#endif // completion_hh_INCLUDED
|