blob: 75cadcfdd8c2525d8c8a1d2fcac3d0d075cf148e (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
#ifndef insert_completer_hh_INCLUDED
#define insert_completer_hh_INCLUDED
#include "buffer.hh"
#include "option_manager.hh"
#include "optional.hh"
namespace Kakoune
{
struct InsertCompleterDesc
{
enum Mode
{
Word,
Option,
Filename
};
InsertCompleterDesc(Mode mode = Filename,
Optional<String> param = Optional<String>{})
: mode{mode}, param{std::move(param)}
{}
bool operator==(const InsertCompleterDesc& other) const
{ return mode == other.mode and param == other.param; }
bool operator!=(const InsertCompleterDesc& other) const
{ return !(*this == other); }
Mode mode;
Optional<String> param;
};
using InsertCompleterDescList = std::vector<InsertCompleterDesc>;
String option_to_string(const InsertCompleterDesc& opt);
void option_from_string(StringView str, InsertCompleterDesc& opt);
using ComplAndDesc = std::pair<String, String>;
using ComplAndDescList = std::vector<ComplAndDesc>;
struct InsertCompletion
{
ByteCoord begin;
ByteCoord end;
ComplAndDescList candidates;
size_t timestamp;
bool is_valid() const { return not candidates.empty(); }
};
class InsertCompleter : public OptionManagerWatcher
{
public:
InsertCompleter(const Context& context);
InsertCompleter(const InsertCompleter&) = delete;
InsertCompleter& operator=(const InsertCompleter&) = delete;
~InsertCompleter();
void select(int offset);
void update();
void reset();
void explicit_file_complete();
void explicit_word_complete();
void explicit_line_complete();
private:
bool setup_ifn();
template<typename CompleteFunc>
bool try_complete(CompleteFunc complete_func);
void on_option_changed(const Option& opt) override;
void menu_show();
const Context& m_context;
OptionManager& m_options;
InsertCompletion m_completions;
ComplAndDescList m_matching_candidates;
int m_current_candidate = -1;
};
}
#endif // insert_completer_hh_INCLUDED
|