kakoune/src/highlighters.hh
2023-10-25 21:06:52 +11:00

46 lines
1.3 KiB
C++

#ifndef highlighters_hh_INCLUDED
#define highlighters_hh_INCLUDED
#include "color.hh"
#include "highlighter.hh"
#include "option.hh"
namespace Kakoune
{
void register_highlighters();
struct InclusiveBufferRange
{
BufferCoord first, last;
friend bool operator==(const InclusiveBufferRange& lhs, const InclusiveBufferRange& rhs) = default;
};
String option_to_string(InclusiveBufferRange range);
InclusiveBufferRange option_from_string(Meta::Type<InclusiveBufferRange>, StringView str);
using LineAndSpec = std::tuple<LineCount, String>;
using LineAndSpecList = TimestampedList<LineAndSpec>;
constexpr StringView option_type_name(Meta::Type<LineAndSpecList>)
{
return "line-specs";
}
void option_update(LineAndSpecList& opt, const Context& context);
void option_list_postprocess(Vector<LineAndSpec, MemoryDomain::Options>& opt);
using RangeAndString = std::tuple<InclusiveBufferRange, String>;
using RangeAndStringList = TimestampedList<RangeAndString>;
constexpr StringView option_type_name(Meta::Type<RangeAndStringList>)
{
return "range-specs";
}
void option_update(RangeAndStringList& opt, const Context& context);
void option_list_postprocess(Vector<RangeAndString, MemoryDomain::Options>& opt);
bool option_add_from_strings(Vector<RangeAndString, MemoryDomain::Options>& opt, ConstArrayView<String> strs);
}
#endif // highlighters_hh_INCLUDED