kakoune/src/word_db.hh
Maxime Coste 389308dfd8 Preserve current word in word completion if found elsewhere
If occurence count in the buffer if greater that one, do not
remove it from the matches.
2014-04-22 19:32:12 +01:00

38 lines
660 B
C++

#ifndef word_db_hh_INCLUDED
#define word_db_hh_INCLUDED
#include "buffer.hh"
#include "line_change_watcher.hh"
#include <map>
namespace Kakoune
{
class String;
// maintain a database of words available in a buffer
class WordDB
{
public:
WordDB(const Buffer& buffer);
std::vector<String> find_prefix(const String& prefix);
int get_word_occurences(const String& word) const;
using WordList = std::map<String, int>;
private:
using LineToWords = std::vector<std::vector<String>>;
void update_db();
LineChangeWatcher m_change_watcher;
WordList m_words;
LineToWords m_line_to_words;
};
}
#endif // word_db_hh_INCLUDED