ivy.nvim/cpp/match.hpp

15 lines
211 B
C++
Raw Normal View History

#pragma once
#include <string>
namespace ivy {
struct Match {
int score;
std::string content;
};
static bool sort_match(const Match& a, const Match& b) { return a.score > b.score; }
} // namespace ivy