2011-11-29 23:37:20 +01:00
|
|
|
#include "highlighters.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
|
2011-11-14 15:23:02 +01:00
|
|
|
#include "assert.hh"
|
2014-05-09 14:50:12 +02:00
|
|
|
#include "buffer_utils.hh"
|
2017-01-13 14:45:46 +01:00
|
|
|
#include "changes.hh"
|
2012-12-31 14:28:32 +01:00
|
|
|
#include "context.hh"
|
2014-12-23 14:54:09 +01:00
|
|
|
#include "containers.hh"
|
2015-05-04 18:12:51 +02:00
|
|
|
#include "command_manager.hh"
|
2013-12-17 00:24:08 +01:00
|
|
|
#include "display_buffer.hh"
|
2014-07-11 01:27:04 +02:00
|
|
|
#include "face_registry.hh"
|
|
|
|
#include "highlighter_group.hh"
|
2014-05-26 22:01:45 +02:00
|
|
|
#include "line_modification.hh"
|
2017-03-16 10:57:39 +01:00
|
|
|
#include "option.hh"
|
2014-07-11 01:27:04 +02:00
|
|
|
#include "parameters_parser.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "register_manager.hh"
|
2016-03-14 10:31:13 +01:00
|
|
|
#include "regex.hh"
|
2012-08-29 21:49:36 +02:00
|
|
|
#include "string.hh"
|
2015-05-05 21:21:17 +02:00
|
|
|
#include "window.hh"
|
2012-10-08 14:27:43 +02:00
|
|
|
#include "utf8.hh"
|
2013-02-26 14:12:21 +01:00
|
|
|
#include "utf8_iterator.hh"
|
2013-03-26 00:14:38 +01:00
|
|
|
|
2013-02-26 14:12:21 +01:00
|
|
|
#include <locale>
|
2015-11-26 23:51:39 +01:00
|
|
|
#include <cstdio>
|
2011-11-08 15:28:01 +01:00
|
|
|
|
2011-09-30 21:16:23 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
template<typename T>
|
|
|
|
void highlight_range(DisplayBuffer& display_buffer,
|
2016-09-22 21:36:26 +02:00
|
|
|
BufferCoord begin, BufferCoord end,
|
2012-07-12 23:19:10 +02:00
|
|
|
bool skip_replaced, T func)
|
2011-09-30 21:16:23 +02:00
|
|
|
{
|
2017-03-10 00:40:34 +01:00
|
|
|
// tolerate begin > end as that can be triggered by wrong encodngs
|
|
|
|
if (begin >= end or end <= display_buffer.range().begin
|
2015-04-23 22:38:45 +02:00
|
|
|
or begin >= display_buffer.range().end)
|
2012-07-12 23:51:13 +02:00
|
|
|
return;
|
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
for (auto& line : display_buffer.lines())
|
2011-09-30 21:16:23 +02:00
|
|
|
{
|
2013-07-23 20:11:26 +02:00
|
|
|
auto& range = line.range();
|
2015-04-23 22:38:45 +02:00
|
|
|
if (range.end <= begin or end < range.begin)
|
2012-12-12 19:33:29 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it)
|
2012-07-03 23:23:07 +02:00
|
|
|
{
|
2016-10-13 20:55:15 +02:00
|
|
|
bool is_replaced = atom_it->type() == DisplayAtom::ReplacedRange;
|
2011-11-14 15:23:02 +01:00
|
|
|
|
2013-07-24 14:55:57 +02:00
|
|
|
if (not atom_it->has_buffer_range() or
|
2012-12-12 19:33:29 +01:00
|
|
|
(skip_replaced and is_replaced))
|
|
|
|
continue;
|
2011-09-30 21:16:23 +02:00
|
|
|
|
2013-07-24 14:55:57 +02:00
|
|
|
if (end <= atom_it->begin() or begin >= atom_it->end())
|
2012-12-12 19:33:29 +01:00
|
|
|
continue;
|
2012-02-22 22:48:14 +01:00
|
|
|
|
2013-07-24 14:55:57 +02:00
|
|
|
if (not is_replaced and begin > atom_it->begin())
|
2012-12-12 19:33:29 +01:00
|
|
|
atom_it = ++line.split(atom_it, begin);
|
2011-11-14 15:23:02 +01:00
|
|
|
|
2013-07-24 14:55:57 +02:00
|
|
|
if (not is_replaced and end < atom_it->end())
|
2012-12-12 19:33:29 +01:00
|
|
|
{
|
|
|
|
atom_it = line.split(atom_it, end);
|
|
|
|
func(*atom_it);
|
|
|
|
++atom_it;
|
2012-07-12 23:19:10 +02:00
|
|
|
}
|
2012-12-12 19:33:29 +01:00
|
|
|
else
|
|
|
|
func(*atom_it);
|
2012-07-12 23:19:10 +02:00
|
|
|
}
|
2011-09-30 21:16:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-17 00:24:08 +01:00
|
|
|
void apply_highlighter(const Context& context,
|
2013-12-11 22:38:43 +01:00
|
|
|
DisplayBuffer& display_buffer,
|
2017-05-03 20:41:37 +02:00
|
|
|
HighlightPass pass,
|
2016-09-22 21:36:26 +02:00
|
|
|
BufferCoord begin, BufferCoord end,
|
2014-10-22 01:20:09 +02:00
|
|
|
Highlighter& highlighter)
|
2013-12-11 22:38:43 +01:00
|
|
|
{
|
2015-02-15 20:42:48 +01:00
|
|
|
if (begin == end)
|
|
|
|
return;
|
|
|
|
|
2013-12-11 22:38:43 +01:00
|
|
|
using LineIterator = DisplayBuffer::LineList::iterator;
|
|
|
|
LineIterator first_line;
|
2015-01-12 14:24:30 +01:00
|
|
|
Vector<DisplayLine::iterator> insert_pos;
|
2013-12-11 22:38:43 +01:00
|
|
|
auto line_end = display_buffer.lines().end();
|
|
|
|
|
|
|
|
DisplayBuffer region_display;
|
|
|
|
auto& region_lines = region_display.lines();
|
|
|
|
for (auto line_it = display_buffer.lines().begin(); line_it != line_end; ++line_it)
|
|
|
|
{
|
|
|
|
auto& line = *line_it;
|
|
|
|
auto& range = line.range();
|
2015-04-23 22:38:45 +02:00
|
|
|
if (range.end <= begin or end <= range.begin)
|
2013-12-11 22:38:43 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (region_lines.empty())
|
|
|
|
first_line = line_it;
|
|
|
|
region_lines.emplace_back();
|
|
|
|
insert_pos.emplace_back();
|
|
|
|
|
2015-04-23 22:38:45 +02:00
|
|
|
if (range.begin < begin or range.end > end)
|
2013-12-11 22:38:43 +01:00
|
|
|
{
|
|
|
|
size_t beg_idx = 0;
|
|
|
|
size_t end_idx = line.atoms().size();
|
|
|
|
|
|
|
|
for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it)
|
|
|
|
{
|
|
|
|
if (not atom_it->has_buffer_range() or end <= atom_it->begin() or begin >= atom_it->end())
|
|
|
|
continue;
|
|
|
|
|
2016-10-13 20:55:15 +02:00
|
|
|
bool is_replaced = atom_it->type() == DisplayAtom::ReplacedRange;
|
2013-12-11 22:38:43 +01:00
|
|
|
if (atom_it->begin() <= begin)
|
|
|
|
{
|
|
|
|
if (is_replaced or atom_it->begin() == begin)
|
|
|
|
beg_idx = atom_it - line.begin();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
atom_it = ++line.split(atom_it, begin);
|
|
|
|
beg_idx = atom_it - line.begin();
|
|
|
|
++end_idx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atom_it->end() >= end)
|
|
|
|
{
|
|
|
|
if (is_replaced or atom_it->end() == end)
|
2014-07-14 22:41:29 +02:00
|
|
|
end_idx = atom_it - line.begin() + 1;
|
2013-12-11 22:38:43 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
atom_it = ++line.split(atom_it, end);
|
|
|
|
end_idx = atom_it - line.begin();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::move(line.begin() + beg_idx, line.begin() + end_idx,
|
|
|
|
std::back_inserter(region_lines.back()));
|
|
|
|
insert_pos.back() = line.erase(line.begin() + beg_idx, line.begin() + end_idx);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
region_lines.back() = std::move(line);
|
|
|
|
insert_pos.back() = line.begin();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-16 14:25:17 +01:00
|
|
|
if (region_display.lines().empty())
|
|
|
|
return;
|
|
|
|
|
2013-12-11 22:38:43 +01:00
|
|
|
region_display.compute_range();
|
2017-04-27 20:27:28 +02:00
|
|
|
highlighter.highlight(context, pass, region_display, {begin, end});
|
2013-12-11 22:38:43 +01:00
|
|
|
|
|
|
|
for (size_t i = 0; i < region_lines.size(); ++i)
|
|
|
|
{
|
|
|
|
auto& line = *(first_line + i);
|
|
|
|
auto pos = insert_pos[i];
|
|
|
|
for (auto& atom : region_lines[i])
|
|
|
|
pos = ++line.insert(pos, std::move(atom));
|
|
|
|
}
|
|
|
|
display_buffer.compute_range();
|
|
|
|
}
|
|
|
|
|
2014-07-11 01:27:04 +02:00
|
|
|
auto apply_face = [](const Face& face)
|
2014-06-18 21:31:49 +02:00
|
|
|
{
|
2014-07-11 01:27:04 +02:00
|
|
|
return [&face](DisplayAtom& atom) {
|
2015-08-23 13:13:14 +02:00
|
|
|
atom.face = merge_faces(atom.face, face);
|
2014-06-18 21:33:23 +02:00
|
|
|
};
|
2014-06-18 21:31:49 +02:00
|
|
|
};
|
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
static HighlighterAndId create_fill_highlighter(HighlighterParameters params)
|
2014-06-10 22:46:16 +02:00
|
|
|
{
|
2014-09-19 14:45:11 +02:00
|
|
|
if (params.size() != 1)
|
|
|
|
throw runtime_error("wrong parameter count");
|
|
|
|
|
|
|
|
const String& facespec = params[0];
|
|
|
|
get_face(facespec); // validate param
|
2014-06-10 22:46:16 +02:00
|
|
|
|
2017-04-27 20:27:28 +02:00
|
|
|
auto func = [=](const Context& context, HighlightPass pass,
|
2014-12-02 20:56:17 +01:00
|
|
|
DisplayBuffer& display_buffer, BufferRange range)
|
2014-06-10 22:46:16 +02:00
|
|
|
{
|
2015-04-23 22:38:45 +02:00
|
|
|
highlight_range(display_buffer, range.begin, range.end, true,
|
2014-09-19 14:45:11 +02:00
|
|
|
apply_face(get_face(facespec)));
|
|
|
|
};
|
2014-10-22 01:20:09 +02:00
|
|
|
return {"fill_" + facespec, make_simple_highlighter(std::move(func))};
|
2014-06-10 22:46:16 +02:00
|
|
|
}
|
|
|
|
|
2014-01-09 23:51:23 +01:00
|
|
|
template<typename T>
|
|
|
|
struct BufferSideCache
|
|
|
|
{
|
2016-12-03 14:17:42 +01:00
|
|
|
BufferSideCache() : m_id{get_free_value_id()} {}
|
2014-01-09 23:51:23 +01:00
|
|
|
|
|
|
|
T& get(const Buffer& buffer)
|
|
|
|
{
|
|
|
|
Value& cache_val = buffer.values()[m_id];
|
|
|
|
if (not cache_val)
|
2014-05-14 22:19:19 +02:00
|
|
|
cache_val = Value(T{});
|
2014-01-09 23:51:23 +01:00
|
|
|
return cache_val.as<T>();
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
ValueId m_id;
|
|
|
|
};
|
|
|
|
|
2015-02-17 14:50:31 +01:00
|
|
|
using FacesSpec = Vector<std::pair<size_t, String>, MemoryDomain::Highlight>;
|
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
class RegexHighlighter : public Highlighter
|
2011-11-24 20:11:58 +01:00
|
|
|
{
|
2012-08-15 17:08:48 +02:00
|
|
|
public:
|
2014-07-12 14:57:16 +02:00
|
|
|
RegexHighlighter(Regex regex, FacesSpec faces)
|
2017-05-03 20:41:37 +02:00
|
|
|
: Highlighter{HighlightPass::Colorize},
|
|
|
|
m_regex{std::move(regex)},
|
|
|
|
m_faces{std::move(faces)}
|
2012-08-15 17:08:48 +02:00
|
|
|
{
|
2015-02-17 14:50:31 +01:00
|
|
|
ensure_first_face_is_capture_0();
|
2012-08-15 17:08:48 +02:00
|
|
|
}
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void do_highlight(const Context& context, HighlightPass, DisplayBuffer& display_buffer, BufferRange range) override
|
2012-07-12 23:19:10 +02:00
|
|
|
{
|
2015-11-27 01:04:33 +01:00
|
|
|
auto overlaps = [](const BufferRange& lhs, const BufferRange& rhs) {
|
|
|
|
return lhs.begin < rhs.begin ? lhs.end > rhs.begin
|
|
|
|
: rhs.end > lhs.begin;
|
|
|
|
};
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
if (not overlaps(display_buffer.range(), range))
|
2014-01-18 02:56:51 +01:00
|
|
|
return;
|
2014-07-12 12:19:35 +02:00
|
|
|
|
2015-02-17 14:50:31 +01:00
|
|
|
Vector<Face> faces(m_faces.size());
|
|
|
|
for (int f = 0; f < m_faces.size(); ++f)
|
2012-08-07 00:13:54 +02:00
|
|
|
{
|
2015-02-17 14:50:31 +01:00
|
|
|
if (not m_faces[f].second.empty())
|
|
|
|
faces[f] = get_face(m_faces[f].second);
|
|
|
|
}
|
2012-08-15 17:08:48 +02:00
|
|
|
|
2015-02-17 14:50:31 +01:00
|
|
|
auto& matches = get_matches(context.buffer(), display_buffer.range(), range);
|
|
|
|
kak_assert(matches.size() % m_faces.size() == 0);
|
|
|
|
for (size_t m = 0; m < matches.size(); ++m)
|
|
|
|
{
|
|
|
|
auto& face = faces[m % faces.size()];
|
|
|
|
if (face == Face{})
|
|
|
|
continue;
|
|
|
|
|
|
|
|
highlight_range(display_buffer,
|
2015-04-23 22:38:45 +02:00
|
|
|
matches[m].begin, matches[m].end,
|
2015-02-17 14:50:31 +01:00
|
|
|
true, apply_face(face));
|
2012-08-07 00:13:54 +02:00
|
|
|
}
|
2012-07-12 23:19:10 +02:00
|
|
|
}
|
2012-08-15 17:08:48 +02:00
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
void reset(Regex regex, FacesSpec faces)
|
|
|
|
{
|
|
|
|
m_regex = std::move(regex);
|
|
|
|
m_faces = std::move(faces);
|
2015-02-17 14:50:31 +01:00
|
|
|
ensure_first_face_is_capture_0();
|
2015-02-16 23:43:14 +01:00
|
|
|
++m_regex_version;
|
2014-10-22 01:20:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HighlighterAndId create(HighlighterParameters params)
|
|
|
|
{
|
|
|
|
if (params.size() < 2)
|
|
|
|
throw runtime_error("wrong parameter count");
|
|
|
|
|
2015-07-14 22:06:41 +02:00
|
|
|
FacesSpec faces;
|
2016-11-20 12:15:15 +01:00
|
|
|
for (auto& spec : params.subrange(1))
|
2014-10-22 01:20:09 +02:00
|
|
|
{
|
2015-11-09 10:34:03 +01:00
|
|
|
auto colon = find(spec, ':');
|
|
|
|
if (colon == spec.end())
|
2016-12-07 14:57:16 +01:00
|
|
|
throw runtime_error(format("wrong face spec: '{}' expected <capture>:<facespec>", spec));
|
2015-11-09 10:34:03 +01:00
|
|
|
get_face({colon+1, spec.end()}); // throw if wrong face spec
|
|
|
|
int capture = str_to_int({spec.begin(), colon});
|
|
|
|
faces.emplace_back(capture, String{colon+1, spec.end()});
|
2015-07-14 22:06:41 +02:00
|
|
|
}
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2016-12-07 14:57:16 +01:00
|
|
|
String id = format("hlregex'{}'", params[0]);
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2016-03-03 00:45:39 +01:00
|
|
|
Regex ex{params[0], Regex::optimize};
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2015-07-14 22:06:41 +02:00
|
|
|
return {id, make_unique<RegexHighlighter>(std::move(ex),
|
|
|
|
std::move(faces))};
|
2014-10-22 01:20:09 +02:00
|
|
|
}
|
|
|
|
|
2012-08-15 17:08:48 +02:00
|
|
|
private:
|
2015-02-17 14:50:31 +01:00
|
|
|
// stores the range for each highlighted capture of each match
|
|
|
|
using MatchList = Vector<BufferRange, MemoryDomain::Highlight>;
|
2014-01-12 22:24:59 +01:00
|
|
|
struct Cache
|
2013-11-19 00:17:06 +01:00
|
|
|
{
|
2015-02-16 23:43:14 +01:00
|
|
|
size_t m_timestamp = -1;
|
|
|
|
size_t m_regex_version = -1;
|
2015-04-23 22:44:20 +02:00
|
|
|
struct RangeAndMatches { BufferRange range; MatchList matches; };
|
2015-02-15 20:42:48 +01:00
|
|
|
Vector<RangeAndMatches, MemoryDomain::Highlight> m_matches;
|
2013-11-19 00:17:06 +01:00
|
|
|
};
|
2014-01-12 22:24:59 +01:00
|
|
|
BufferSideCache<Cache> m_cache;
|
2012-08-15 17:08:48 +02:00
|
|
|
|
|
|
|
Regex m_regex;
|
2014-07-12 12:19:35 +02:00
|
|
|
FacesSpec m_faces;
|
2012-08-15 17:08:48 +02:00
|
|
|
|
2015-02-16 23:43:14 +01:00
|
|
|
size_t m_regex_version = 0;
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2015-02-17 14:50:31 +01:00
|
|
|
void ensure_first_face_is_capture_0()
|
|
|
|
{
|
|
|
|
if (m_faces.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::sort(m_faces.begin(), m_faces.end(),
|
|
|
|
[](const std::pair<size_t, String>& lhs,
|
|
|
|
const std::pair<size_t, String>& rhs)
|
|
|
|
{ return lhs.first < rhs.first; });
|
|
|
|
if (m_faces[0].first != 0)
|
|
|
|
m_faces.emplace(m_faces.begin(), 0, String{});
|
|
|
|
}
|
|
|
|
|
|
|
|
void add_matches(const Buffer& buffer, MatchList& matches,
|
2015-02-16 20:13:55 +01:00
|
|
|
BufferRange range)
|
|
|
|
{
|
2015-02-17 14:50:31 +01:00
|
|
|
kak_assert(matches.size() % m_faces.size() == 0);
|
2015-02-16 20:13:55 +01:00
|
|
|
using RegexIt = RegexIterator<BufferIterator>;
|
2015-04-23 22:38:45 +02:00
|
|
|
RegexIt re_it{buffer.iterator_at(range.begin),
|
2015-12-23 22:43:07 +01:00
|
|
|
buffer.iterator_at(range.end), m_regex,
|
|
|
|
match_flags(is_bol(range.begin),
|
|
|
|
is_eol(buffer, range.end),
|
2016-05-10 10:12:30 +02:00
|
|
|
is_bow(buffer, range.begin),
|
2015-12-23 22:43:07 +01:00
|
|
|
is_eow(buffer, range.end))};
|
2015-02-16 20:13:55 +01:00
|
|
|
RegexIt re_end;
|
|
|
|
for (; re_it != re_end; ++re_it)
|
|
|
|
{
|
2017-03-17 00:08:10 +01:00
|
|
|
for (auto& face : m_faces)
|
2015-02-17 14:50:31 +01:00
|
|
|
{
|
2017-03-17 00:08:10 +01:00
|
|
|
const auto& sub = (*re_it)[face.first];
|
2015-04-23 22:38:45 +02:00
|
|
|
matches.push_back({sub.first.coord(), sub.second.coord()});
|
2015-02-17 14:50:31 +01:00
|
|
|
}
|
2015-02-16 20:13:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-17 14:50:31 +01:00
|
|
|
MatchList& get_matches(const Buffer& buffer, BufferRange display_range,
|
|
|
|
BufferRange buffer_range)
|
2012-08-15 17:08:48 +02:00
|
|
|
{
|
2014-01-12 22:24:59 +01:00
|
|
|
Cache& cache = m_cache.get(buffer);
|
2015-02-15 20:42:48 +01:00
|
|
|
auto& matches = cache.m_matches;
|
2013-11-19 00:17:06 +01:00
|
|
|
|
2015-02-16 23:43:14 +01:00
|
|
|
if (cache.m_regex_version != m_regex_version or
|
|
|
|
cache.m_timestamp != buffer.timestamp())
|
2015-02-15 20:42:48 +01:00
|
|
|
{
|
|
|
|
matches.clear();
|
|
|
|
cache.m_timestamp = buffer.timestamp();
|
2015-02-16 23:43:14 +01:00
|
|
|
cache.m_regex_version = m_regex_version;
|
2015-02-15 20:42:48 +01:00
|
|
|
}
|
|
|
|
const LineCount line_offset = 3;
|
2016-09-22 21:36:26 +02:00
|
|
|
BufferRange range{std::max<BufferCoord>(buffer_range.begin, display_range.begin.line - line_offset),
|
|
|
|
std::min<BufferCoord>(buffer_range.end, display_range.end.line + line_offset)};
|
2012-08-15 17:08:48 +02:00
|
|
|
|
2015-02-15 20:42:48 +01:00
|
|
|
auto it = std::upper_bound(matches.begin(), matches.end(), range,
|
|
|
|
[](const BufferRange& lhs, const Cache::RangeAndMatches& rhs)
|
2015-04-23 22:44:20 +02:00
|
|
|
{ return lhs.begin < rhs.range.end; });
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2015-04-23 22:44:20 +02:00
|
|
|
if (it == matches.end() or it->range.begin > range.end)
|
2015-02-16 20:13:55 +01:00
|
|
|
{
|
2015-02-15 20:42:48 +01:00
|
|
|
it = matches.insert(it, Cache::RangeAndMatches{range, {}});
|
2015-04-23 22:44:20 +02:00
|
|
|
add_matches(buffer, it->matches, range);
|
2015-02-16 20:13:55 +01:00
|
|
|
}
|
2015-04-23 22:44:20 +02:00
|
|
|
else if (it->matches.empty())
|
2015-02-15 20:42:48 +01:00
|
|
|
{
|
2015-04-23 22:44:20 +02:00
|
|
|
it->range = range;
|
|
|
|
add_matches(buffer, it->matches, range);
|
2015-02-15 20:42:48 +01:00
|
|
|
}
|
2015-02-16 20:13:55 +01:00
|
|
|
else
|
2013-11-19 00:17:06 +01:00
|
|
|
{
|
2015-02-16 20:13:55 +01:00
|
|
|
// Here we extend the matches, that is not strictly valid,
|
|
|
|
// but may work nicely with every reasonable regex, and
|
|
|
|
// greatly reduces regex parsing. To change if we encounter
|
|
|
|
// regex that do not work great with that.
|
2015-04-23 22:44:20 +02:00
|
|
|
BufferRange& old_range = it->range;
|
|
|
|
MatchList& matches = it->matches;
|
2015-02-17 14:50:31 +01:00
|
|
|
|
|
|
|
// Thanks to the ensure_first_face_is_capture_0 method, we know
|
|
|
|
// these point to the first/last matches capture 0.
|
2015-04-23 22:38:45 +02:00
|
|
|
auto first_end = matches.begin()->end;
|
2015-10-18 12:37:04 +02:00
|
|
|
auto last_end = (matches.end() - m_faces.size())->end;
|
2015-02-16 20:13:55 +01:00
|
|
|
|
|
|
|
// add regex matches from new begin to old first match end
|
2015-04-23 22:38:45 +02:00
|
|
|
if (range.begin < old_range.begin)
|
2015-02-16 20:13:55 +01:00
|
|
|
{
|
2015-04-23 22:38:45 +02:00
|
|
|
old_range.begin = range.begin;
|
2015-02-17 14:50:31 +01:00
|
|
|
MatchList new_matches;
|
2015-04-23 22:38:45 +02:00
|
|
|
add_matches(buffer, new_matches, {range.begin, first_end});
|
2015-02-17 14:50:31 +01:00
|
|
|
matches.erase(matches.begin(), matches.begin() + m_faces.size());
|
2015-02-16 20:13:55 +01:00
|
|
|
|
|
|
|
std::copy(std::make_move_iterator(new_matches.begin()),
|
|
|
|
std::make_move_iterator(new_matches.end()),
|
|
|
|
std::inserter(matches, matches.begin()));
|
|
|
|
}
|
|
|
|
// add regex matches from old last match begin to new end
|
2015-04-23 22:38:45 +02:00
|
|
|
if (old_range.end < range.end)
|
2015-02-16 20:13:55 +01:00
|
|
|
{
|
2015-04-23 22:38:45 +02:00
|
|
|
old_range.end = range.end;
|
2015-10-18 12:37:04 +02:00
|
|
|
add_matches(buffer, matches, {last_end, range.end});
|
2015-02-16 20:13:55 +01:00
|
|
|
}
|
2013-11-19 00:17:06 +01:00
|
|
|
}
|
2015-04-23 22:44:20 +02:00
|
|
|
return it->matches;
|
2012-08-15 17:08:48 +02:00
|
|
|
}
|
|
|
|
};
|
2011-11-24 20:11:58 +01:00
|
|
|
|
2014-07-11 01:27:04 +02:00
|
|
|
template<typename RegexGetter, typename FaceGetter>
|
2014-10-22 01:20:09 +02:00
|
|
|
class DynamicRegexHighlighter : public Highlighter
|
2012-12-31 14:28:32 +01:00
|
|
|
{
|
|
|
|
public:
|
2014-07-11 01:27:04 +02:00
|
|
|
DynamicRegexHighlighter(RegexGetter regex_getter, FaceGetter face_getter)
|
2017-05-03 20:41:37 +02:00
|
|
|
: Highlighter{HighlightPass::Colorize},
|
|
|
|
m_regex_getter(std::move(regex_getter)),
|
|
|
|
m_face_getter(std::move(face_getter)),
|
|
|
|
m_highlighter(Regex{}, FacesSpec{}) {}
|
2012-12-31 14:28:32 +01:00
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void do_highlight(const Context& context, HighlightPass pass, DisplayBuffer& display_buffer, BufferRange range) override
|
2012-12-31 14:28:32 +01:00
|
|
|
{
|
2013-12-17 00:24:08 +01:00
|
|
|
Regex regex = m_regex_getter(context);
|
2014-07-12 12:19:35 +02:00
|
|
|
FacesSpec face = m_face_getter(context);
|
2014-07-11 01:27:04 +02:00
|
|
|
if (regex != m_last_regex or face != m_last_face)
|
2012-12-31 14:28:32 +01:00
|
|
|
{
|
2015-11-09 09:50:17 +01:00
|
|
|
m_last_regex = std::move(regex);
|
2014-07-11 01:27:04 +02:00
|
|
|
m_last_face = face;
|
2013-03-26 14:26:59 +01:00
|
|
|
if (not m_last_regex.empty())
|
2014-10-22 01:20:09 +02:00
|
|
|
m_highlighter.reset(m_last_regex, m_last_face);
|
2012-12-31 14:28:32 +01:00
|
|
|
}
|
2014-07-11 01:27:04 +02:00
|
|
|
if (not m_last_regex.empty() and not m_last_face.empty())
|
2017-04-27 20:27:28 +02:00
|
|
|
m_highlighter.highlight(context, pass, display_buffer, range);
|
2012-12-31 14:28:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2014-07-11 01:27:04 +02:00
|
|
|
Regex m_last_regex;
|
|
|
|
RegexGetter m_regex_getter;
|
2014-05-13 20:35:28 +02:00
|
|
|
|
2014-07-12 12:19:35 +02:00
|
|
|
FacesSpec m_last_face;
|
2014-07-11 01:27:04 +02:00
|
|
|
FaceGetter m_face_getter;
|
2014-05-13 20:35:28 +02:00
|
|
|
|
2014-07-12 14:57:16 +02:00
|
|
|
RegexHighlighter m_highlighter;
|
2012-12-31 14:28:32 +01:00
|
|
|
};
|
|
|
|
|
2014-07-11 01:27:04 +02:00
|
|
|
template<typename RegexGetter, typename FaceGetter>
|
2014-10-22 01:20:09 +02:00
|
|
|
std::unique_ptr<DynamicRegexHighlighter<RegexGetter, FaceGetter>>
|
2014-07-11 01:27:04 +02:00
|
|
|
make_dynamic_regex_highlighter(RegexGetter regex_getter, FaceGetter face_getter)
|
2014-05-13 20:35:28 +02:00
|
|
|
{
|
2015-05-26 19:42:09 +02:00
|
|
|
return make_unique<DynamicRegexHighlighter<RegexGetter, FaceGetter>>(
|
2014-07-11 01:27:04 +02:00
|
|
|
std::move(regex_getter), std::move(face_getter));
|
2014-05-13 20:35:28 +02:00
|
|
|
}
|
|
|
|
|
2015-11-09 10:34:03 +01:00
|
|
|
HighlighterAndId create_dynamic_regex_highlighter(HighlighterParameters params)
|
2012-12-31 14:28:32 +01:00
|
|
|
{
|
2015-11-09 10:34:03 +01:00
|
|
|
if (params.size() < 2)
|
|
|
|
throw runtime_error("Wrong parameter count");
|
2015-07-09 14:53:21 +02:00
|
|
|
|
2015-11-09 10:34:03 +01:00
|
|
|
FacesSpec faces;
|
2016-11-20 12:15:15 +01:00
|
|
|
for (auto& spec : params.subrange(1))
|
2015-11-09 10:34:03 +01:00
|
|
|
{
|
|
|
|
auto colon = find(spec, ':');
|
|
|
|
if (colon == spec.end())
|
|
|
|
throw runtime_error("wrong face spec: '" + spec +
|
|
|
|
"' expected <capture>:<facespec>");
|
|
|
|
get_face({colon+1, spec.end()}); // throw if wrong face spec
|
|
|
|
int capture = str_to_int({spec.begin(), colon});
|
|
|
|
faces.emplace_back(capture, String{colon+1, spec.end()});
|
|
|
|
}
|
|
|
|
|
|
|
|
auto get_face = [faces](const Context& context){ return faces;; };
|
|
|
|
|
|
|
|
String expr = params[0];
|
2015-12-12 07:50:58 +01:00
|
|
|
auto tokens = parse<true>(expr);
|
|
|
|
if (tokens.size() == 1 and tokens[0].type() == Token::Type::OptionExpand and
|
|
|
|
GlobalScope::instance().options()[tokens[0].content()].is_of_type<Regex>())
|
|
|
|
{
|
|
|
|
String option_name = tokens[0].content();
|
|
|
|
auto get_regex = [option_name](const Context& context) {
|
|
|
|
return context.options()[option_name].get<Regex>();
|
|
|
|
};
|
|
|
|
return {format("dynregex_{}", expr), make_dynamic_regex_highlighter(get_regex, get_face)};
|
|
|
|
}
|
|
|
|
|
2015-11-09 10:34:03 +01:00
|
|
|
auto get_regex = [expr](const Context& context){
|
2015-07-09 14:53:21 +02:00
|
|
|
try
|
|
|
|
{
|
2015-11-09 10:34:03 +01:00
|
|
|
auto re = expand(expr, context);
|
|
|
|
return re.empty() ? Regex{} : Regex{re};
|
2015-07-09 14:53:21 +02:00
|
|
|
}
|
2015-11-09 10:34:03 +01:00
|
|
|
catch (runtime_error& err)
|
2015-07-09 14:53:21 +02:00
|
|
|
{
|
2017-05-01 23:05:03 +02:00
|
|
|
write_to_debug_buffer(format("Error while evaluating dynamic regex expression: {}", err.what()));
|
2015-07-09 14:53:21 +02:00
|
|
|
return Regex{};
|
|
|
|
}
|
|
|
|
};
|
2015-11-09 10:34:03 +01:00
|
|
|
return {format("dynregex_{}", expr), make_dynamic_regex_highlighter(get_regex, get_face)};
|
2013-04-03 19:20:38 +02:00
|
|
|
}
|
2013-03-26 14:26:59 +01:00
|
|
|
|
2015-05-04 18:12:51 +02:00
|
|
|
HighlighterAndId create_line_highlighter(HighlighterParameters params)
|
2014-06-18 21:50:39 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 2)
|
|
|
|
throw runtime_error("wrong parameter count");
|
|
|
|
|
2014-07-13 17:52:51 +02:00
|
|
|
String facespec = params[1];
|
2015-11-09 09:42:40 +01:00
|
|
|
String line_expr = params[0];
|
2014-06-18 21:50:39 +02:00
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
get_face(facespec); // validate facespec
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
auto func = [=](const Context& context, HighlightPass, DisplayBuffer& display_buffer, BufferRange)
|
2014-06-18 21:50:39 +02:00
|
|
|
{
|
2015-11-09 09:42:40 +01:00
|
|
|
LineCount line = -1;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
line = str_to_int_ifp(expand(line_expr, context)).value_or(0) - 1;
|
|
|
|
}
|
|
|
|
catch (runtime_error& err)
|
|
|
|
{
|
|
|
|
write_to_debug_buffer(
|
|
|
|
format("Error evaluating highlight line expression: {}", err.what()));
|
|
|
|
}
|
|
|
|
|
2015-05-05 21:21:17 +02:00
|
|
|
if (line < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto it = find_if(display_buffer.lines(),
|
|
|
|
[line](const DisplayLine& l)
|
|
|
|
{ return l.range().begin.line == line; });
|
|
|
|
if (it == display_buffer.lines().end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto face = get_face(facespec);
|
2016-09-22 21:36:26 +02:00
|
|
|
ColumnCount column = 0;
|
2017-03-17 00:08:10 +01:00
|
|
|
for (auto& atom : *it)
|
2015-05-05 21:21:17 +02:00
|
|
|
{
|
2017-03-17 00:08:10 +01:00
|
|
|
column += atom.length();
|
|
|
|
if (!atom.has_buffer_range())
|
2015-05-05 21:21:17 +02:00
|
|
|
continue;
|
|
|
|
|
2017-03-17 00:08:10 +01:00
|
|
|
kak_assert(atom.begin().line == line);
|
|
|
|
apply_face(face)(atom);
|
2015-05-05 21:21:17 +02:00
|
|
|
}
|
2016-09-22 21:36:26 +02:00
|
|
|
const ColumnCount remaining = context.window().dimensions().column - column;
|
2015-05-05 21:21:17 +02:00
|
|
|
if (remaining > 0)
|
|
|
|
it->push_back({ String{' ', remaining}, face });
|
2014-06-18 21:50:39 +02:00
|
|
|
};
|
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
return {"hlline_" + params[0], make_simple_highlighter(std::move(func))};
|
2014-06-18 21:50:39 +02:00
|
|
|
}
|
|
|
|
|
2015-05-04 18:12:51 +02:00
|
|
|
HighlighterAndId create_column_highlighter(HighlighterParameters params)
|
2015-04-30 00:08:16 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 2)
|
|
|
|
throw runtime_error("wrong parameter count");
|
|
|
|
|
|
|
|
String facespec = params[1];
|
2015-11-09 09:42:40 +01:00
|
|
|
String col_expr = params[0];
|
2015-04-30 00:08:16 +02:00
|
|
|
|
|
|
|
get_face(facespec); // validate facespec
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
auto func = [=](const Context& context, HighlightPass, DisplayBuffer& display_buffer, BufferRange)
|
2015-04-30 00:08:16 +02:00
|
|
|
{
|
2016-09-22 21:36:26 +02:00
|
|
|
ColumnCount column = -1;
|
2015-11-09 09:42:40 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
column = str_to_int_ifp(expand(col_expr, context)).value_or(0) - 1;
|
|
|
|
}
|
|
|
|
catch (runtime_error& err)
|
|
|
|
{
|
|
|
|
write_to_debug_buffer(
|
|
|
|
format("Error evaluating highlight column expression: {}", err.what()));
|
|
|
|
}
|
|
|
|
|
2015-04-30 00:08:16 +02:00
|
|
|
if (column < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const Buffer& buffer = context.buffer();
|
|
|
|
const int tabstop = context.options()["tabstop"].get<int>();
|
|
|
|
auto face = get_face(facespec);
|
|
|
|
for (auto& line : display_buffer.lines())
|
|
|
|
{
|
|
|
|
const LineCount buf_line = line.range().begin.line;
|
|
|
|
const ByteCount byte_col = get_byte_to_column(buffer, tabstop, {buf_line, column});
|
2016-09-22 21:36:26 +02:00
|
|
|
const BufferCoord coord{buf_line, byte_col};
|
2015-04-30 00:08:16 +02:00
|
|
|
bool found = false;
|
|
|
|
if (buffer.is_valid(coord) and not buffer.is_end(coord))
|
|
|
|
{
|
|
|
|
for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it)
|
|
|
|
{
|
2017-04-19 22:15:36 +02:00
|
|
|
if (atom_it->type() != DisplayAtom::Range)
|
2015-04-30 00:08:16 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
kak_assert(atom_it->begin().line == buf_line);
|
|
|
|
if (coord >= atom_it->begin() and coord < atom_it->end())
|
|
|
|
{
|
|
|
|
if (coord > atom_it->begin())
|
|
|
|
atom_it = ++line.split(atom_it, coord);
|
|
|
|
if (buffer.next(coord) < atom_it->end())
|
|
|
|
atom_it = line.split(atom_it, buffer.next(coord));
|
|
|
|
|
|
|
|
apply_face(face)(*atom_it);
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (not found)
|
|
|
|
{
|
2016-09-22 21:36:26 +02:00
|
|
|
ColumnCount first_buffer_col = -1;
|
|
|
|
ColumnCount first_display_col = 0;
|
2015-07-23 14:58:23 +02:00
|
|
|
for (auto& atom : line)
|
2015-04-30 00:08:16 +02:00
|
|
|
{
|
2015-07-23 14:58:23 +02:00
|
|
|
if (atom.has_buffer_range())
|
|
|
|
{
|
|
|
|
first_buffer_col = get_column(buffer, tabstop, atom.begin());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
first_display_col += atom.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (first_buffer_col == -1)
|
|
|
|
continue;
|
|
|
|
|
2016-09-22 21:36:26 +02:00
|
|
|
ColumnCount eol_col = line.length();
|
|
|
|
ColumnCount count = column + first_display_col - first_buffer_col - eol_col;
|
2015-07-23 14:58:23 +02:00
|
|
|
if (count >= 0)
|
|
|
|
{
|
|
|
|
if (count > 0)
|
|
|
|
line.push_back({String{' ', count}});
|
2015-04-30 00:08:16 +02:00
|
|
|
line.push_back({String{" "}, face});
|
|
|
|
}
|
2015-07-23 14:58:23 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
for (auto atom_it = line.end(); atom_it != line.begin() and count < 0; --atom_it)
|
|
|
|
{
|
|
|
|
DisplayAtom& atom = *(atom_it-1);
|
|
|
|
|
2016-09-22 21:36:26 +02:00
|
|
|
const ColumnCount len = atom.length();
|
2015-07-23 14:58:23 +02:00
|
|
|
if (atom.type() == DisplayAtom::Text and -count <= len)
|
|
|
|
{
|
|
|
|
auto it = atom_it - 1;
|
2016-09-22 21:36:26 +02:00
|
|
|
ColumnCount pos = len + count;
|
2015-07-23 14:58:23 +02:00
|
|
|
if (pos > 0)
|
|
|
|
{
|
|
|
|
it = ++line.split(it, pos);
|
|
|
|
pos = 0;
|
|
|
|
}
|
|
|
|
if (pos+1 != it->length())
|
|
|
|
it = line.split(it, pos+1);
|
|
|
|
|
|
|
|
apply_face(face)(*it);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
count += len;
|
|
|
|
}
|
|
|
|
}
|
2015-04-30 00:08:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return {"hlcol_" + params[0], make_simple_highlighter(std::move(func))};
|
|
|
|
}
|
|
|
|
|
2017-04-27 20:27:28 +02:00
|
|
|
struct WrapHighlighter : Highlighter
|
2016-01-24 07:34:51 +01:00
|
|
|
{
|
2017-05-06 17:14:28 +02:00
|
|
|
WrapHighlighter(bool word_wrap) : Highlighter{HighlightPass::Wrap}, m_word_wrap{word_wrap} {}
|
2016-01-24 07:34:51 +01:00
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void do_highlight(const Context& context, HighlightPass pass,
|
|
|
|
DisplayBuffer& display_buffer, BufferRange) override
|
|
|
|
{
|
2017-05-07 14:43:43 +02:00
|
|
|
const ColumnCount wrap_column = context.window().range().column;
|
2017-05-06 17:17:33 +02:00
|
|
|
if (wrap_column <= 0)
|
2016-01-24 07:34:51 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
const Buffer& buffer = context.buffer();
|
|
|
|
const int tabstop = context.options()["tabstop"].get<int>();
|
2017-04-27 20:27:28 +02:00
|
|
|
const LineCount win_height = context.window().dimensions().line;
|
2016-01-24 07:34:51 +01:00
|
|
|
for (auto it = display_buffer.lines().begin();
|
|
|
|
it != display_buffer.lines().end(); ++it)
|
|
|
|
{
|
|
|
|
const LineCount buf_line = it->range().begin.line;
|
|
|
|
const ByteCount line_length = buffer[buf_line].length();
|
|
|
|
|
2017-05-06 17:14:28 +02:00
|
|
|
auto coord = next_split_coord(buffer, wrap_column, tabstop, buf_line);
|
2016-01-24 07:34:51 +01:00
|
|
|
if (buffer.is_valid(coord) and not buffer.is_end(coord))
|
|
|
|
{
|
|
|
|
for (auto atom_it = it->begin();
|
|
|
|
coord.column != line_length and atom_it != it->end(); )
|
|
|
|
{
|
|
|
|
if (!atom_it->has_buffer_range() or
|
|
|
|
coord < atom_it->begin() or coord >= atom_it->end())
|
|
|
|
{
|
|
|
|
++atom_it;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto& line = *it;
|
|
|
|
|
|
|
|
if (coord > atom_it->begin())
|
|
|
|
atom_it = ++line.split(atom_it, coord);
|
|
|
|
if (buffer.next(coord) < atom_it->end())
|
|
|
|
atom_it = line.split(atom_it, buffer.next(coord));
|
|
|
|
|
|
|
|
DisplayLine new_line{ AtomList{ atom_it, line.end() } };
|
|
|
|
line.erase(atom_it, line.end());
|
2017-04-27 20:27:28 +02:00
|
|
|
|
|
|
|
if (it+1 - display_buffer.lines().begin() == win_height)
|
|
|
|
{
|
|
|
|
display_buffer.lines().erase(it+1, display_buffer.lines().end());
|
|
|
|
return;
|
|
|
|
}
|
2016-01-24 07:34:51 +01:00
|
|
|
it = display_buffer.lines().insert(it+1, new_line);
|
|
|
|
|
2017-05-06 17:14:28 +02:00
|
|
|
coord = next_split_coord(buffer, wrap_column, tabstop, coord);
|
2016-01-24 07:34:51 +01:00
|
|
|
atom_it = it->begin();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-27 20:27:28 +02:00
|
|
|
}
|
2016-01-24 07:34:51 +01:00
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void do_compute_display_setup(const Context& context, HighlightPass, DisplaySetup& setup) override
|
2017-04-27 20:27:28 +02:00
|
|
|
{
|
2017-05-07 14:43:43 +02:00
|
|
|
const ColumnCount wrap_column = setup.window_range.column;
|
2017-05-06 17:17:33 +02:00
|
|
|
if (wrap_column <= 0)
|
2017-04-27 20:27:28 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
const Buffer& buffer = context.buffer();
|
2017-05-07 14:43:43 +02:00
|
|
|
const auto& cursor = context.selections().main().cursor();
|
2017-04-27 20:27:28 +02:00
|
|
|
const int tabstop = context.options()["tabstop"].get<int>();
|
|
|
|
|
|
|
|
auto line_wrap_count = [&](LineCount line) {
|
2017-05-06 17:14:28 +02:00
|
|
|
LineCount count = 0;
|
|
|
|
BufferCoord coord{line};
|
|
|
|
const ByteCount line_length = buffer[line].length();
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
coord = next_split_coord(buffer, wrap_column, tabstop, coord);
|
|
|
|
if (coord.column == line_length)
|
|
|
|
break;
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
return count;
|
2017-04-27 20:27:28 +02:00
|
|
|
};
|
|
|
|
|
2017-05-01 22:32:38 +02:00
|
|
|
// Disable vertical scrolling when using a WrapHighlighter
|
|
|
|
setup.cursor_pos.column += setup.window_pos.column;
|
|
|
|
setup.window_pos.column = 0;
|
|
|
|
|
2017-04-27 20:27:28 +02:00
|
|
|
const LineCount win_height = context.window().dimensions().line;
|
|
|
|
LineCount win_line = 0;
|
|
|
|
for (auto buf_line = setup.window_pos.line;
|
|
|
|
buf_line < setup.window_pos.line + setup.window_range.line;
|
|
|
|
++buf_line)
|
|
|
|
{
|
|
|
|
if (buf_line >= buffer.line_count())
|
|
|
|
break;
|
|
|
|
|
|
|
|
const auto wrap_count = line_wrap_count(buf_line);
|
|
|
|
setup.window_range.line -= wrap_count;
|
|
|
|
|
2017-05-06 17:14:28 +02:00
|
|
|
if (win_line < setup.cursor_pos.line)
|
2017-04-27 20:27:28 +02:00
|
|
|
setup.cursor_pos.line += wrap_count;
|
2017-05-06 17:14:28 +02:00
|
|
|
// Place the cursor correctly after its line gets wrapped
|
|
|
|
else if (win_line == setup.cursor_pos.line)
|
|
|
|
{
|
|
|
|
BufferCoord coord{buf_line};
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
auto split_coord = next_split_coord(buffer, wrap_column, tabstop, coord);
|
|
|
|
if (split_coord.column > cursor.column)
|
|
|
|
{
|
|
|
|
setup.cursor_pos.column = get_column(buffer, tabstop, cursor) - get_column(buffer, tabstop, coord);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++setup.cursor_pos.line;
|
|
|
|
coord = split_coord;
|
|
|
|
}
|
|
|
|
kak_assert(setup.cursor_pos.column >= 0 and setup.cursor_pos.column < setup.window_range.column);
|
|
|
|
}
|
2017-04-27 20:27:28 +02:00
|
|
|
win_line += wrap_count + 1;
|
|
|
|
|
|
|
|
// scroll window to keep cursor visible, and update range as lines gets removed
|
2017-05-07 14:15:34 +02:00
|
|
|
while (buf_line < cursor.line and setup.cursor_pos.line >= win_height)
|
2017-04-27 20:27:28 +02:00
|
|
|
{
|
|
|
|
auto removed_lines = 1 + line_wrap_count(setup.window_pos.line++);
|
|
|
|
setup.cursor_pos.line -= removed_lines;
|
|
|
|
win_line -= removed_lines;
|
|
|
|
// removed one line from the range, added removed_lines potential ones
|
|
|
|
setup.window_range.line += removed_lines - 1;
|
2017-05-07 14:15:34 +02:00
|
|
|
kak_assert(setup.cursor_pos.line >= 0);
|
2017-04-27 20:27:28 +02:00
|
|
|
}
|
|
|
|
|
2017-05-01 21:55:18 +02:00
|
|
|
if (setup.window_range.line <= buf_line - setup.window_pos.line)
|
2017-04-27 20:27:28 +02:00
|
|
|
setup.window_range.line = buf_line - setup.window_pos.line + 1;
|
2017-05-07 14:15:34 +02:00
|
|
|
// Todo: support displaying partial lines, so that we can ensure the cursor is
|
|
|
|
// visible even if a line takes more than the full screen height once wrapped.
|
|
|
|
// kak_assert(setup.cursor_pos.line >= 0 and setup.cursor_pos.line < win_height);
|
2017-04-27 20:27:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-06 17:14:28 +02:00
|
|
|
BufferCoord next_split_coord(const Buffer& buffer, ColumnCount wrap_column, int tabstop, BufferCoord coord)
|
|
|
|
{
|
|
|
|
auto column = get_column(buffer, tabstop, coord);
|
|
|
|
auto col = get_byte_to_column(
|
|
|
|
buffer, tabstop, {coord.line, column + wrap_column});
|
|
|
|
BufferCoord split_coord{coord.line, col};
|
|
|
|
|
|
|
|
if (m_word_wrap)
|
|
|
|
{
|
|
|
|
StringView line = buffer[coord.line];
|
|
|
|
utf8::iterator<const char*> it{line.data() + (size_t)col, line};
|
|
|
|
while (it != line.end() and it != line.begin() and is_word(*it))
|
|
|
|
--it;
|
|
|
|
|
|
|
|
if (it != line.begin() and it != line.data() + (size_t)col)
|
|
|
|
split_coord.column = (it+1).base() - line.begin();
|
|
|
|
}
|
|
|
|
return split_coord;
|
|
|
|
};
|
|
|
|
|
2017-05-01 22:32:38 +02:00
|
|
|
static HighlighterAndId create(HighlighterParameters params)
|
2017-04-27 20:27:28 +02:00
|
|
|
{
|
2017-05-06 17:14:28 +02:00
|
|
|
static const ParameterDesc param_desc{
|
|
|
|
{ { "word", { false, "" } } },
|
|
|
|
ParameterDesc::Flags::None, 0, 0
|
|
|
|
};
|
|
|
|
ParametersParser parser(params, param_desc);
|
2017-04-27 20:27:28 +02:00
|
|
|
|
2017-05-06 17:14:28 +02:00
|
|
|
return {"wrap", make_unique<WrapHighlighter>((bool)parser.get_switch("word"))};
|
2017-04-27 20:27:28 +02:00
|
|
|
}
|
2017-05-06 17:14:28 +02:00
|
|
|
|
|
|
|
const bool m_word_wrap;
|
2017-04-27 20:27:28 +02:00
|
|
|
};
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void expand_tabulations(const Context& context, HighlightPass, DisplayBuffer& display_buffer, BufferRange)
|
2011-10-12 20:52:22 +02:00
|
|
|
{
|
2016-09-24 19:52:54 +02:00
|
|
|
const ColumnCount tabstop = context.options()["tabstop"].get<int>();
|
2013-12-17 00:24:08 +01:00
|
|
|
auto& buffer = context.buffer();
|
2012-07-12 23:19:10 +02:00
|
|
|
for (auto& line : display_buffer.lines())
|
2011-10-12 20:52:22 +02:00
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it)
|
2011-10-12 20:52:22 +02:00
|
|
|
{
|
2016-10-13 20:55:15 +02:00
|
|
|
if (atom_it->type() != DisplayAtom::Range)
|
2012-07-12 23:19:10 +02:00
|
|
|
continue;
|
2011-10-17 21:01:36 +02:00
|
|
|
|
2013-07-24 14:55:57 +02:00
|
|
|
auto begin = buffer.iterator_at(atom_it->begin());
|
|
|
|
auto end = buffer.iterator_at(atom_it->end());
|
2012-07-12 23:19:10 +02:00
|
|
|
for (BufferIterator it = begin; it != end; ++it)
|
|
|
|
{
|
|
|
|
if (*it == '\t')
|
2011-10-15 06:45:49 +02:00
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
if (it != begin)
|
2013-05-23 13:59:33 +02:00
|
|
|
atom_it = ++line.split(atom_it, it.coord());
|
2012-07-12 23:19:10 +02:00
|
|
|
if (it+1 != end)
|
2013-05-23 13:59:33 +02:00
|
|
|
atom_it = line.split(atom_it, (it+1).coord());
|
2012-07-12 23:19:10 +02:00
|
|
|
|
2016-09-24 19:52:54 +02:00
|
|
|
ColumnCount column = get_column(buffer, tabstop, it.coord());
|
|
|
|
ColumnCount count = tabstop - (column % tabstop);
|
2012-07-12 23:19:10 +02:00
|
|
|
String padding;
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
|
|
padding += ' ';
|
2013-07-24 14:55:57 +02:00
|
|
|
atom_it->replace(padding);
|
2012-07-12 23:19:10 +02:00
|
|
|
break;
|
2011-10-15 06:45:49 +02:00
|
|
|
}
|
2011-10-12 20:52:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void show_whitespaces(const Context& context, HighlightPass, DisplayBuffer& display_buffer, BufferRange,
|
2017-02-10 00:52:38 +01:00
|
|
|
StringView tab, StringView tabpad,
|
|
|
|
StringView spc, StringView lf, StringView nbsp)
|
2014-05-09 14:50:12 +02:00
|
|
|
{
|
|
|
|
const int tabstop = context.options()["tabstop"].get<int>();
|
2016-04-30 11:59:53 +02:00
|
|
|
auto whitespaceface = get_face("Whitespace");
|
2014-05-09 14:50:12 +02:00
|
|
|
auto& buffer = context.buffer();
|
|
|
|
for (auto& line : display_buffer.lines())
|
|
|
|
{
|
|
|
|
for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it)
|
|
|
|
{
|
2016-10-13 20:55:15 +02:00
|
|
|
if (atom_it->type() != DisplayAtom::Range)
|
2014-05-09 14:50:12 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
auto begin = buffer.iterator_at(atom_it->begin());
|
|
|
|
auto end = buffer.iterator_at(atom_it->end());
|
2016-12-02 14:59:34 +01:00
|
|
|
for (BufferIterator it = begin; it != end; )
|
2014-05-09 14:50:12 +02:00
|
|
|
{
|
2016-12-02 14:59:34 +01:00
|
|
|
auto coord = it.coord();
|
|
|
|
Codepoint cp = utf8::read_codepoint<utf8::InvalidPolicy::Pass>(it, end);
|
|
|
|
if (cp == '\t' or cp == ' ' or cp == '\n' or cp == 0xA0)
|
2014-05-09 14:50:12 +02:00
|
|
|
{
|
2016-12-02 14:59:34 +01:00
|
|
|
if (coord != begin.coord())
|
|
|
|
atom_it = ++line.split(atom_it, coord);
|
|
|
|
if (it != end)
|
|
|
|
atom_it = line.split(atom_it, it.coord());
|
2014-05-09 14:50:12 +02:00
|
|
|
|
2016-12-02 14:59:34 +01:00
|
|
|
if (cp == '\t')
|
2014-05-09 14:50:12 +02:00
|
|
|
{
|
|
|
|
int column = (int)get_column(buffer, tabstop, it.coord());
|
|
|
|
int count = tabstop - (column % tabstop);
|
2017-02-10 00:52:38 +01:00
|
|
|
atom_it->replace(tab + String(tabpad[(CharCount)0], CharCount{count-1}));
|
2014-05-09 14:50:12 +02:00
|
|
|
}
|
2016-12-02 14:59:34 +01:00
|
|
|
else if (cp == ' ')
|
2017-02-10 00:52:38 +01:00
|
|
|
atom_it->replace(spc.str());
|
2016-12-02 14:59:34 +01:00
|
|
|
else if (cp == '\n')
|
2017-02-10 00:52:38 +01:00
|
|
|
atom_it->replace(lf.str());
|
2016-12-02 14:59:34 +01:00
|
|
|
else if (cp == 0xA0)
|
2017-02-10 00:52:38 +01:00
|
|
|
atom_it->replace(nbsp.str());
|
2017-03-21 19:17:43 +01:00
|
|
|
atom_it->face = merge_faces(atom_it->face, whitespaceface);
|
2014-05-09 14:50:12 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-04 08:10:14 +01:00
|
|
|
HighlighterAndId show_whitespaces_factory(HighlighterParameters params)
|
2015-04-23 21:27:42 +02:00
|
|
|
{
|
2017-02-04 08:10:14 +01:00
|
|
|
static const ParameterDesc param_desc{
|
|
|
|
{ { "tab", { true, "" } },
|
|
|
|
{ "tabpad", { true, "" } },
|
|
|
|
{ "spc", { true, "" } },
|
|
|
|
{ "lf", { true, "" } },
|
|
|
|
{ "nbsp", { true, "" } } },
|
|
|
|
ParameterDesc::Flags::None, 0, 0
|
|
|
|
};
|
|
|
|
ParametersParser parser(params, param_desc);
|
|
|
|
|
2017-02-10 00:52:38 +01:00
|
|
|
auto get_param = [&](StringView param, StringView fallback) {
|
|
|
|
StringView value = parser.get_switch(param).value_or(fallback);
|
|
|
|
if (value.char_length() != 1)
|
|
|
|
throw runtime_error{format("-{} expects a single character parmeter", param)};
|
|
|
|
return value.str();
|
|
|
|
};
|
2017-02-04 08:10:14 +01:00
|
|
|
|
|
|
|
using namespace std::placeholders;
|
|
|
|
auto func = std::bind(show_whitespaces, _1, _2, _3, _4,
|
2017-02-10 00:52:38 +01:00
|
|
|
get_param("tab", "→"), get_param("tabpad", " "),
|
|
|
|
get_param("spc", "·"),
|
|
|
|
get_param("lf", "¬"),
|
|
|
|
get_param("nbsp", "⍽"));
|
2017-02-04 08:10:14 +01:00
|
|
|
|
|
|
|
return {"show_whitespaces", make_simple_highlighter(std::move(func))};
|
2015-04-23 21:27:42 +02:00
|
|
|
}
|
|
|
|
|
2017-04-27 20:27:28 +02:00
|
|
|
struct LineNumbersHighlighter : Highlighter
|
2011-10-17 21:01:36 +02:00
|
|
|
{
|
2017-04-27 20:27:28 +02:00
|
|
|
LineNumbersHighlighter(bool relative, bool hl_cursor_line, String separator)
|
2017-05-03 20:41:37 +02:00
|
|
|
: Highlighter{HighlightPass::Move},
|
|
|
|
m_relative{relative},
|
2017-04-27 20:27:28 +02:00
|
|
|
m_hl_cursor_line{hl_cursor_line},
|
|
|
|
m_separator{std::move(separator)} {}
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
static HighlighterAndId create(HighlighterParameters params)
|
2011-10-17 21:01:36 +02:00
|
|
|
{
|
2017-05-03 20:41:37 +02:00
|
|
|
static const ParameterDesc param_desc{
|
|
|
|
{ { "relative", { false, "" } },
|
|
|
|
{ "separator", { true, "" } },
|
|
|
|
{ "hlcursor", { false, "" } } },
|
|
|
|
ParameterDesc::Flags::None, 0, 0
|
|
|
|
};
|
|
|
|
ParametersParser parser(params, param_desc);
|
2017-04-27 20:27:28 +02:00
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
StringView separator = parser.get_switch("separator").value_or("│");
|
|
|
|
if (separator.length() > 10)
|
|
|
|
throw runtime_error("Separator length is limited to 10 bytes");
|
|
|
|
|
|
|
|
return {"number_lines", make_unique<LineNumbersHighlighter>((bool)parser.get_switch("relative"), (bool)parser.get_switch("hlcursor"), separator.str())};
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void do_highlight(const Context& context, HighlightPass, DisplayBuffer& display_buffer, BufferRange)
|
|
|
|
{
|
2017-04-27 20:27:28 +02:00
|
|
|
const Face face = get_face("LineNumbers");
|
2017-05-01 22:26:50 +02:00
|
|
|
const Face face_wrapped = get_face("LineNumbersWrapped");
|
2017-04-27 20:27:28 +02:00
|
|
|
const Face face_absolute = get_face("LineNumberCursor");
|
|
|
|
int digit_count = compute_digit_count(context);
|
|
|
|
|
|
|
|
char format[16];
|
|
|
|
format_to(format, "%{}d{}", digit_count, m_separator);
|
|
|
|
const int main_line = (int)context.selections().main().cursor().line + 1;
|
2017-05-01 22:26:50 +02:00
|
|
|
int last_line = -1;
|
2017-04-27 20:27:28 +02:00
|
|
|
for (auto& line : display_buffer.lines())
|
|
|
|
{
|
|
|
|
const int current_line = (int)line.range().begin.line + 1;
|
|
|
|
const bool is_cursor_line = main_line == current_line;
|
|
|
|
const int line_to_format = (m_relative and not is_cursor_line) ?
|
|
|
|
current_line - main_line : current_line;
|
|
|
|
char buffer[16];
|
|
|
|
snprintf(buffer, 16, format, std::abs(line_to_format));
|
|
|
|
DisplayAtom atom{buffer};
|
2017-05-01 22:26:50 +02:00
|
|
|
atom.face = last_line == current_line ? face_wrapped :
|
|
|
|
((m_hl_cursor_line and is_cursor_line) ? face_absolute : face);
|
2017-04-27 20:27:28 +02:00
|
|
|
line.insert(line.begin(), std::move(atom));
|
2017-05-01 22:26:50 +02:00
|
|
|
last_line = current_line;
|
2017-04-27 20:27:28 +02:00
|
|
|
}
|
2011-10-17 21:01:36 +02:00
|
|
|
}
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void do_compute_display_setup(const Context& context, HighlightPass, DisplaySetup& setup) override
|
2017-04-27 20:27:28 +02:00
|
|
|
{
|
|
|
|
ColumnCount width = compute_digit_count(context) + m_separator.column_length();
|
|
|
|
setup.window_range.column -= width;
|
|
|
|
}
|
2015-03-18 22:07:57 +01:00
|
|
|
|
2017-04-27 20:27:28 +02:00
|
|
|
int compute_digit_count(const Context& context)
|
|
|
|
{
|
|
|
|
int digit_count = 0;
|
|
|
|
LineCount last_line = context.buffer().line_count();
|
|
|
|
for (LineCount c = last_line; c > 0; c /= 10)
|
|
|
|
++digit_count;
|
|
|
|
return digit_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
const bool m_relative;
|
|
|
|
const bool m_hl_cursor_line;
|
|
|
|
const String m_separator;
|
|
|
|
};
|
2015-03-18 22:07:57 +01:00
|
|
|
|
2017-04-27 20:27:28 +02:00
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void show_matching_char(const Context& context, HighlightPass, DisplayBuffer& display_buffer, BufferRange)
|
2014-01-20 22:01:26 +01:00
|
|
|
{
|
2014-07-12 12:19:35 +02:00
|
|
|
const Face face = get_face("MatchingChar");
|
2014-01-20 22:01:26 +01:00
|
|
|
using CodepointPair = std::pair<Codepoint, Codepoint>;
|
2014-04-02 23:52:00 +02:00
|
|
|
static const CodepointPair matching_chars[] = { { '(', ')' }, { '{', '}' }, { '[', ']' }, { '<', '>' } };
|
2014-01-20 22:01:26 +01:00
|
|
|
const auto range = display_buffer.range();
|
|
|
|
const auto& buffer = context.buffer();
|
|
|
|
for (auto& sel : context.selections())
|
|
|
|
{
|
2014-01-28 20:05:49 +01:00
|
|
|
auto pos = sel.cursor();
|
2015-04-23 22:38:45 +02:00
|
|
|
if (pos < range.begin or pos >= range.end)
|
2014-01-20 22:01:26 +01:00
|
|
|
continue;
|
|
|
|
auto c = buffer.byte_at(pos);
|
|
|
|
for (auto& pair : matching_chars)
|
|
|
|
{
|
|
|
|
int level = 1;
|
|
|
|
if (c == pair.first)
|
|
|
|
{
|
2015-03-27 14:18:06 +01:00
|
|
|
for (auto it = buffer.iterator_at(pos)+1,
|
2015-04-23 22:38:45 +02:00
|
|
|
end = buffer.iterator_at(range.end); it != end; ++it)
|
2015-03-27 14:18:06 +01:00
|
|
|
{
|
|
|
|
char c = *it;
|
2014-01-20 22:01:26 +01:00
|
|
|
if (c == pair.first)
|
|
|
|
++level;
|
|
|
|
else if (c == pair.second and --level == 0)
|
2015-03-27 14:18:06 +01:00
|
|
|
{
|
|
|
|
highlight_range(display_buffer, it.coord(), (it+1).coord(), false,
|
|
|
|
apply_face(face));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-01-20 22:01:26 +01:00
|
|
|
}
|
2015-04-23 22:38:45 +02:00
|
|
|
else if (c == pair.second and pos > range.begin)
|
2014-01-20 22:01:26 +01:00
|
|
|
{
|
2015-03-27 14:18:06 +01:00
|
|
|
for (auto it = buffer.iterator_at(pos)-1,
|
2015-04-23 22:38:45 +02:00
|
|
|
end = buffer.iterator_at(range.begin); true; --it)
|
2015-03-27 14:18:06 +01:00
|
|
|
{
|
|
|
|
char c = *it;
|
2014-01-20 22:01:26 +01:00
|
|
|
if (c == pair.second)
|
|
|
|
++level;
|
|
|
|
else if (c == pair.first and --level == 0)
|
2015-03-27 14:18:06 +01:00
|
|
|
{
|
|
|
|
highlight_range(display_buffer, it.coord(), (it+1).coord(), false,
|
|
|
|
apply_face(face));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (it == end)
|
|
|
|
break;
|
|
|
|
}
|
2014-01-20 22:01:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 21:27:42 +02:00
|
|
|
HighlighterAndId create_matching_char_highlighter(HighlighterParameters params)
|
|
|
|
{
|
|
|
|
return {"show_matching", make_simple_highlighter(show_matching_char)};
|
|
|
|
}
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void highlight_selections(const Context& context, HighlightPass, DisplayBuffer& display_buffer, BufferRange)
|
2012-04-03 15:22:07 +02:00
|
|
|
{
|
2013-12-17 00:24:08 +01:00
|
|
|
const auto& buffer = context.buffer();
|
2015-09-24 14:55:06 +02:00
|
|
|
const Face primary_face = get_face("PrimarySelection");
|
|
|
|
const Face secondary_face = get_face("SecondarySelection");
|
|
|
|
const Face primary_cursor_face = get_face("PrimaryCursor");
|
|
|
|
const Face secondary_cursor_face = get_face("SecondaryCursor");
|
|
|
|
|
2016-07-27 10:03:01 +02:00
|
|
|
const auto& selections = context.selections();
|
|
|
|
for (size_t i = 0; i < selections.size(); ++i)
|
2012-04-03 15:22:07 +02:00
|
|
|
{
|
2016-07-27 10:03:01 +02:00
|
|
|
auto& sel = selections[i];
|
2014-01-28 20:05:49 +01:00
|
|
|
const bool forward = sel.anchor() <= sel.cursor();
|
2016-09-22 21:36:26 +02:00
|
|
|
BufferCoord begin = forward ? sel.anchor() : buffer.char_next(sel.cursor());
|
|
|
|
BufferCoord end = forward ? (BufferCoord)sel.cursor() : buffer.char_next(sel.anchor());
|
2013-03-01 19:21:06 +01:00
|
|
|
|
2016-07-27 10:03:01 +02:00
|
|
|
const bool primary = (i == selections.main_index());
|
2013-12-15 15:57:55 +01:00
|
|
|
highlight_range(display_buffer, begin, end, false,
|
2015-09-24 14:55:06 +02:00
|
|
|
apply_face(primary ? primary_face : secondary_face));
|
2014-06-16 01:59:05 +02:00
|
|
|
}
|
2016-07-27 10:03:01 +02:00
|
|
|
for (size_t i = 0; i < selections.size(); ++i)
|
2014-06-16 01:59:05 +02:00
|
|
|
{
|
2016-07-27 10:03:01 +02:00
|
|
|
auto& sel = selections[i];
|
|
|
|
const bool primary = (i == selections.main_index());
|
2014-01-28 20:05:49 +01:00
|
|
|
highlight_range(display_buffer, sel.cursor(), buffer.char_next(sel.cursor()), false,
|
2015-09-24 14:55:06 +02:00
|
|
|
apply_face(primary ? primary_cursor_face : secondary_cursor_face));
|
2012-04-03 15:22:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void expand_unprintable(const Context& context, HighlightPass, DisplayBuffer& display_buffer, BufferRange)
|
2013-02-26 14:12:21 +01:00
|
|
|
{
|
2013-12-17 00:24:08 +01:00
|
|
|
auto& buffer = context.buffer();
|
2013-02-26 14:12:21 +01:00
|
|
|
for (auto& line : display_buffer.lines())
|
|
|
|
{
|
2013-03-18 23:35:23 +01:00
|
|
|
for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it)
|
2013-02-26 14:12:21 +01:00
|
|
|
{
|
2016-10-13 20:55:15 +02:00
|
|
|
if (atom_it->type() == DisplayAtom::Range)
|
2013-02-26 14:12:21 +01:00
|
|
|
{
|
2014-05-21 01:24:58 +02:00
|
|
|
for (auto it = buffer.iterator_at(atom_it->begin()),
|
|
|
|
end = buffer.iterator_at(atom_it->end()); it < end;)
|
2013-02-26 14:12:21 +01:00
|
|
|
{
|
2015-09-25 00:00:47 +02:00
|
|
|
auto coord = it.coord();
|
|
|
|
Codepoint cp = utf8::read_codepoint<utf8::InvalidPolicy::Pass>(it, end);
|
2016-05-19 22:45:23 +02:00
|
|
|
if (cp != '\n' and not iswprint((wchar_t)cp))
|
2013-02-26 14:12:21 +01:00
|
|
|
{
|
2015-09-25 00:00:47 +02:00
|
|
|
if (coord != atom_it->begin())
|
|
|
|
atom_it = ++line.split(atom_it, coord);
|
|
|
|
if (it.coord() < atom_it->end())
|
|
|
|
atom_it = line.split(atom_it, it.coord());
|
2015-06-22 14:56:00 +02:00
|
|
|
|
|
|
|
atom_it->replace(format("U+{}", hex(cp)));
|
2015-04-25 11:47:39 +02:00
|
|
|
atom_it->face = { Color::Red, Color::Black };
|
2013-03-18 23:35:23 +01:00
|
|
|
break;
|
2013-02-26 14:12:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-27 20:27:28 +02:00
|
|
|
struct FlagLinesHighlighter : Highlighter
|
2013-03-06 14:24:47 +01:00
|
|
|
{
|
2017-04-27 20:27:28 +02:00
|
|
|
FlagLinesHighlighter(String option_name, String default_face)
|
2017-05-03 20:41:37 +02:00
|
|
|
: Highlighter{HighlightPass::Move},
|
|
|
|
m_option_name{std::move(option_name)},
|
2017-04-27 20:27:28 +02:00
|
|
|
m_default_face{std::move(default_face)} {}
|
2013-11-18 23:44:01 +01:00
|
|
|
|
2017-04-27 20:27:28 +02:00
|
|
|
using LineAndFlagList = TimestampedList<LineAndFlag>;
|
2013-11-18 23:44:01 +01:00
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
static HighlighterAndId create(HighlighterParameters params)
|
2011-11-08 15:28:01 +01:00
|
|
|
{
|
2017-05-03 20:41:37 +02:00
|
|
|
if (params.size() != 2)
|
|
|
|
throw runtime_error("wrong parameter count");
|
2015-12-12 12:45:45 +01:00
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
const String& option_name = params[1];
|
|
|
|
const String& default_face = params[0];
|
|
|
|
get_face(default_face); // validate param
|
|
|
|
|
|
|
|
// throw if wrong option type
|
|
|
|
GlobalScope::instance().options()[option_name].get<LineAndFlagList>();
|
|
|
|
|
|
|
|
return {"hlflags_" + params[1], make_unique<FlagLinesHighlighter>(option_name, default_face) };
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void do_highlight(const Context& context, HighlightPass,
|
|
|
|
DisplayBuffer& display_buffer, BufferRange) override
|
|
|
|
{
|
2017-04-27 20:27:28 +02:00
|
|
|
auto& line_flags = context.options()[m_option_name].get_mutable<LineAndFlagList>();
|
2015-12-12 12:45:45 +01:00
|
|
|
auto& buffer = context.buffer();
|
2017-04-27 20:27:28 +02:00
|
|
|
update_line_flags_ifn(buffer, line_flags);
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2017-04-27 20:27:28 +02:00
|
|
|
auto def_face = get_face(m_default_face);
|
2015-12-13 00:16:07 +01:00
|
|
|
Vector<DisplayLine> display_lines;
|
2017-04-27 20:27:28 +02:00
|
|
|
auto& lines = line_flags.list;
|
2017-05-01 23:05:03 +02:00
|
|
|
try
|
2015-12-13 00:16:07 +01:00
|
|
|
{
|
2017-05-01 23:05:03 +02:00
|
|
|
for (auto& line : lines)
|
|
|
|
{
|
|
|
|
display_lines.push_back(parse_display_line(std::get<1>(line)));
|
|
|
|
for (auto& atom : display_lines.back())
|
|
|
|
atom.face = merge_faces(def_face, atom.face);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (runtime_error& err)
|
|
|
|
{
|
|
|
|
write_to_debug_buffer(format("Error while evaluating line flag: {}", err.what()));
|
|
|
|
return;
|
2015-12-13 00:16:07 +01:00
|
|
|
}
|
2015-08-23 13:13:14 +02:00
|
|
|
|
2016-09-22 21:36:26 +02:00
|
|
|
ColumnCount width = 0;
|
2015-12-13 00:16:07 +01:00
|
|
|
for (auto& l : display_lines)
|
|
|
|
width = std::max(width, l.length());
|
|
|
|
const DisplayAtom empty{String{' ', width}, def_face};
|
2014-10-22 01:20:09 +02:00
|
|
|
for (auto& line : display_buffer.lines())
|
|
|
|
{
|
2015-04-23 22:38:45 +02:00
|
|
|
int line_num = (int)line.range().begin.line + 1;
|
2014-10-22 01:20:09 +02:00
|
|
|
auto it = find_if(lines,
|
|
|
|
[&](const LineAndFlag& l)
|
|
|
|
{ return std::get<0>(l) == line_num; });
|
2015-12-13 00:16:07 +01:00
|
|
|
if (it == lines.end())
|
|
|
|
line.insert(line.begin(), empty);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DisplayLine& display_line = display_lines[it - lines.begin()];
|
|
|
|
DisplayAtom padding_atom{String(' ', width - display_line.length()), def_face};
|
|
|
|
auto it = std::copy(std::make_move_iterator(display_line.begin()),
|
|
|
|
std::make_move_iterator(display_line.end()),
|
|
|
|
std::inserter(line, line.begin()));
|
|
|
|
|
|
|
|
if (padding_atom.length() != 0)
|
|
|
|
*it++ = std::move(padding_atom);
|
|
|
|
}
|
2014-10-22 01:20:09 +02:00
|
|
|
}
|
2017-04-27 20:27:28 +02:00
|
|
|
}
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void do_compute_display_setup(const Context& context, HighlightPass, DisplaySetup& setup) override
|
2017-04-27 20:27:28 +02:00
|
|
|
{
|
|
|
|
auto& line_flags = context.options()[m_option_name].get_mutable<LineAndFlagList>();
|
|
|
|
auto& buffer = context.buffer();
|
|
|
|
update_line_flags_ifn(buffer, line_flags);
|
|
|
|
|
|
|
|
ColumnCount width = 0;
|
2017-05-01 23:05:03 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
for (auto& line : line_flags.list)
|
|
|
|
width = std::max(parse_display_line(std::get<1>(line)).length(), width);
|
|
|
|
}
|
|
|
|
catch (runtime_error& err)
|
|
|
|
{
|
|
|
|
write_to_debug_buffer(format("Error while evaluating line flag: {}", err.what()));
|
|
|
|
return;
|
|
|
|
}
|
2017-04-27 20:27:28 +02:00
|
|
|
|
|
|
|
setup.window_range.column -= width;
|
|
|
|
}
|
|
|
|
|
|
|
|
void update_line_flags_ifn(const Buffer& buffer, LineAndFlagList& line_flags)
|
|
|
|
{
|
|
|
|
if (line_flags.prefix == buffer.timestamp())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto& lines = line_flags.list;
|
|
|
|
|
|
|
|
std::sort(lines.begin(), lines.end(),
|
|
|
|
[](const LineAndFlag& lhs, const LineAndFlag& rhs)
|
|
|
|
{ return std::get<0>(lhs) < std::get<0>(rhs); });
|
|
|
|
|
|
|
|
auto modifs = compute_line_modifications(buffer, line_flags.prefix);
|
|
|
|
auto ins_pos = lines.begin();
|
|
|
|
for (auto it = lines.begin(); it != lines.end(); ++it)
|
|
|
|
{
|
|
|
|
auto& line = std::get<0>(*it); // that line is 1 based as it comes from user side
|
|
|
|
auto modif_it = std::upper_bound(modifs.begin(), modifs.end(), line-1,
|
|
|
|
[](const LineCount& l, const LineModification& c)
|
|
|
|
{ return l < c.old_line; });
|
|
|
|
if (modif_it != modifs.begin())
|
|
|
|
{
|
|
|
|
auto& prev = *(modif_it-1);
|
|
|
|
if (line-1 < prev.old_line + prev.num_removed)
|
|
|
|
continue; // line removed
|
|
|
|
|
|
|
|
line += prev.diff();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ins_pos != it)
|
|
|
|
*ins_pos = std::move(*it);
|
|
|
|
++ins_pos;
|
|
|
|
}
|
|
|
|
lines.erase(ins_pos, lines.end());
|
|
|
|
line_flags.prefix = buffer.timestamp();
|
|
|
|
}
|
|
|
|
|
|
|
|
String m_option_name;
|
|
|
|
String m_default_face;
|
|
|
|
};
|
2011-11-08 15:28:01 +01:00
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2017-01-13 14:45:46 +01:00
|
|
|
BufferCoord& get_first(RangeAndFace& r) { return std::get<0>(r).begin; }
|
|
|
|
BufferCoord& get_last(RangeAndFace& r) { return std::get<0>(r).end; }
|
|
|
|
|
2015-12-17 05:07:09 +01:00
|
|
|
HighlighterAndId create_ranges_highlighter(HighlighterParameters params)
|
|
|
|
{
|
|
|
|
if (params.size() != 1)
|
|
|
|
throw runtime_error("wrong parameter count");
|
|
|
|
|
|
|
|
const String& option_name = params[0];
|
|
|
|
|
|
|
|
// throw if wrong option type
|
|
|
|
GlobalScope::instance().options()[option_name].get<TimestampedList<RangeAndFace>>();
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
auto func = [=](const Context& context, HighlightPass, DisplayBuffer& display_buffer, BufferRange)
|
2015-12-17 05:07:09 +01:00
|
|
|
{
|
|
|
|
auto& range_and_faces = context.options()[option_name].get_mutable<TimestampedList<RangeAndFace>>();
|
|
|
|
auto& ranges = range_and_faces.list;
|
|
|
|
|
|
|
|
auto& buffer = context.buffer();
|
2016-04-01 02:27:23 +02:00
|
|
|
if (range_and_faces.prefix != buffer.timestamp())
|
2015-12-17 05:07:09 +01:00
|
|
|
{
|
2017-01-13 14:45:46 +01:00
|
|
|
auto changes = buffer.changes_since(range_and_faces.prefix);
|
|
|
|
auto change_it = changes.begin();
|
|
|
|
while (change_it != changes.end())
|
|
|
|
{
|
|
|
|
auto forward_end = forward_sorted_until(change_it, changes.end());
|
|
|
|
auto backward_end = backward_sorted_until(change_it, changes.end());
|
|
|
|
|
|
|
|
if (forward_end >= backward_end)
|
|
|
|
{
|
|
|
|
update_forward({ change_it, forward_end }, ranges);
|
|
|
|
change_it = forward_end;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
update_backward({ change_it, backward_end }, ranges);
|
|
|
|
change_it = backward_end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
range_and_faces.prefix = buffer.timestamp();
|
2015-12-17 05:07:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for (auto& range : ranges)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto& r = std::get<0>(range);
|
|
|
|
if (not buffer.is_valid(r.begin) or not buffer.is_valid(r.end))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
highlight_range(display_buffer, r.begin, r.end, true,
|
|
|
|
apply_face(get_face(std::get<1>(range))));
|
|
|
|
}
|
|
|
|
catch (runtime_error&)
|
|
|
|
{}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-16 20:04:35 +01:00
|
|
|
return {"hlranges_" + params[0], make_simple_highlighter(func) };
|
2015-12-17 05:07:09 +01:00
|
|
|
}
|
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
HighlighterAndId create_highlighter_group(HighlighterParameters params)
|
2012-01-15 14:45:18 +01:00
|
|
|
{
|
2017-05-04 13:16:38 +02:00
|
|
|
static const ParameterDesc param_desc{
|
|
|
|
{ { "passes", { true, "" } } },
|
|
|
|
ParameterDesc::Flags::SwitchesOnlyAtStart, 1, 1
|
|
|
|
};
|
|
|
|
ParametersParser parser{params, param_desc};
|
|
|
|
|
|
|
|
auto parse_passes = [](StringView str) {
|
|
|
|
HighlightPass passes{};
|
|
|
|
for (auto pass : str | split<StringView>('|'))
|
|
|
|
{
|
|
|
|
if (pass == "colorize")
|
|
|
|
passes |= HighlightPass::Colorize;
|
|
|
|
else if (pass == "move")
|
|
|
|
passes |= HighlightPass::Move;
|
|
|
|
else if (pass == "wrap")
|
|
|
|
passes |= HighlightPass::Wrap;
|
|
|
|
else
|
|
|
|
throw runtime_error{format("invalid highlight pass: {}", pass)};
|
|
|
|
}
|
|
|
|
if (passes == HighlightPass{})
|
|
|
|
throw runtime_error{"no passes specified"};
|
|
|
|
|
|
|
|
return passes;
|
|
|
|
};
|
|
|
|
HighlightPass passes = parse_passes(parser.get_switch("passes").value_or("colorize"));
|
2012-01-15 14:45:18 +01:00
|
|
|
|
2017-05-04 13:16:38 +02:00
|
|
|
return HighlighterAndId(parser[0], make_unique<HighlighterGroup>(passes));
|
2012-01-15 14:45:18 +01:00
|
|
|
}
|
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
HighlighterAndId create_reference_highlighter(HighlighterParameters params)
|
2013-12-03 23:03:10 +01:00
|
|
|
{
|
|
|
|
if (params.size() != 1)
|
|
|
|
throw runtime_error("wrong parameter count");
|
|
|
|
|
|
|
|
const String& name = params[0];
|
|
|
|
|
|
|
|
// throw if not found
|
2014-06-10 23:02:08 +02:00
|
|
|
//DefinedHighlighters::instance().get_group(name, '/');
|
2013-12-03 23:03:10 +01:00
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
auto func = [=](const Context& context, HighlightPass pass, DisplayBuffer& display_buffer, BufferRange range)
|
2014-10-22 01:20:09 +02:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2017-04-27 20:27:28 +02:00
|
|
|
DefinedHighlighters::instance().get_child(name).highlight(context, pass, display_buffer, range);
|
2014-10-22 01:20:09 +02:00
|
|
|
}
|
|
|
|
catch (child_not_found&)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
return {name, make_simple_highlighter(func)};
|
2013-12-03 23:03:10 +01:00
|
|
|
}
|
|
|
|
|
2014-07-14 22:42:19 +02:00
|
|
|
struct RegexMatch
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
|
|
|
LineCount line;
|
|
|
|
ByteCount begin;
|
|
|
|
ByteCount end;
|
2017-02-07 00:00:13 +01:00
|
|
|
StringView capture;
|
2014-06-11 22:26:01 +02:00
|
|
|
|
2016-09-22 21:36:26 +02:00
|
|
|
BufferCoord begin_coord() const { return { line, begin }; }
|
|
|
|
BufferCoord end_coord() const { return { line, end }; }
|
2014-06-11 22:26:01 +02:00
|
|
|
};
|
2015-01-12 14:24:30 +01:00
|
|
|
using RegexMatchList = Vector<RegexMatch, MemoryDomain::Highlight>;
|
2014-06-11 22:26:01 +02:00
|
|
|
|
2017-02-07 00:00:13 +01:00
|
|
|
void find_matches(const Buffer& buffer, RegexMatchList& matches, const Regex& regex, bool capture)
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
2017-02-07 00:00:13 +01:00
|
|
|
capture = capture and regex.mark_count() > 0;
|
2014-06-11 22:26:01 +02:00
|
|
|
for (auto line = 0_line, end = buffer.line_count(); line < end; ++line)
|
|
|
|
{
|
2014-10-03 14:39:13 +02:00
|
|
|
auto l = buffer[line];
|
2014-10-13 14:12:33 +02:00
|
|
|
for (RegexIterator<const char*> it{l.begin(), l.end(), regex}, end{}; it != end; ++it)
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
2017-02-07 00:00:13 +01:00
|
|
|
auto& m = *it;
|
|
|
|
ByteCount b = (int)(m[0].first - l.begin());
|
|
|
|
ByteCount e = (int)(m[0].second - l.begin());
|
|
|
|
auto cap = (capture and m[1].matched) ? StringView{m[1].first, m[1].second} : StringView{};
|
|
|
|
matches.push_back({ line, b, e, cap });
|
2014-06-11 22:26:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-09 14:48:41 +01:00
|
|
|
void update_matches(const Buffer& buffer, ConstArrayView<LineModification> modifs,
|
2017-02-07 00:00:13 +01:00
|
|
|
RegexMatchList& matches, const Regex& regex, bool capture)
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
|
|
|
// remove out of date matches and update line for others
|
|
|
|
auto ins_pos = matches.begin();
|
|
|
|
for (auto it = ins_pos; it != matches.end(); ++it)
|
|
|
|
{
|
2015-02-02 00:19:07 +01:00
|
|
|
auto modif_it = std::upper_bound(modifs.begin(), modifs.end(), it->line,
|
|
|
|
[](const LineCount& l, const LineModification& c)
|
|
|
|
{ return l < c.old_line; });
|
2014-06-11 22:26:01 +02:00
|
|
|
|
2015-02-02 00:19:07 +01:00
|
|
|
if (modif_it != modifs.begin())
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
|
|
|
auto& prev = *(modif_it-1);
|
2015-02-02 00:30:58 +01:00
|
|
|
if (it->line < prev.old_line + prev.num_removed)
|
|
|
|
continue; // match removed
|
|
|
|
|
2014-06-11 22:26:01 +02:00
|
|
|
it->line += prev.diff();
|
|
|
|
}
|
|
|
|
|
2015-02-02 00:30:58 +01:00
|
|
|
kak_assert(buffer.is_valid(it->begin_coord()) or
|
|
|
|
buffer[it->line].length() == it->begin);
|
|
|
|
kak_assert(buffer.is_valid(it->end_coord()) or
|
|
|
|
buffer[it->line].length() == it->end);
|
|
|
|
|
|
|
|
if (ins_pos != it)
|
|
|
|
*ins_pos = std::move(*it);
|
|
|
|
++ins_pos;
|
2014-06-11 22:26:01 +02:00
|
|
|
}
|
|
|
|
matches.erase(ins_pos, matches.end());
|
|
|
|
size_t pivot = matches.size();
|
|
|
|
|
|
|
|
// try to find new matches in each updated lines
|
2017-02-07 00:00:13 +01:00
|
|
|
capture = capture and regex.mark_count() > 0;
|
2014-06-11 22:26:01 +02:00
|
|
|
for (auto& modif : modifs)
|
|
|
|
{
|
2015-02-02 00:19:07 +01:00
|
|
|
for (auto line = modif.new_line; line < modif.new_line + modif.num_added; ++line)
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
2014-10-03 14:39:13 +02:00
|
|
|
auto l = buffer[line];
|
2014-10-13 14:12:33 +02:00
|
|
|
for (RegexIterator<const char*> it{l.begin(), l.end(), regex}, end{}; it != end; ++it)
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
2017-02-07 00:00:13 +01:00
|
|
|
auto& m = *it;
|
|
|
|
ByteCount b = (int)(m[0].first - l.begin());
|
|
|
|
ByteCount e = (int)(m[0].second - l.begin());
|
|
|
|
auto cap = (capture and m[1].matched) ? StringView{m[1].first, m[1].second} : StringView{};
|
|
|
|
matches.push_back({ line, b, e, cap });
|
2014-06-11 22:26:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::inplace_merge(matches.begin(), matches.begin() + pivot, matches.end(),
|
2014-07-14 22:42:19 +02:00
|
|
|
[](const RegexMatch& lhs, const RegexMatch& rhs) {
|
2014-06-11 22:26:01 +02:00
|
|
|
return lhs.begin_coord() < rhs.begin_coord();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
struct RegionMatches
|
|
|
|
{
|
2014-07-14 22:42:19 +02:00
|
|
|
RegexMatchList begin_matches;
|
|
|
|
RegexMatchList end_matches;
|
|
|
|
RegexMatchList recurse_matches;
|
2014-06-11 22:26:01 +02:00
|
|
|
|
2016-09-22 21:36:26 +02:00
|
|
|
static bool compare_to_begin(const RegexMatch& lhs, BufferCoord rhs)
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
2014-06-16 20:41:07 +02:00
|
|
|
return lhs.begin_coord() < rhs;
|
2014-06-11 22:26:01 +02:00
|
|
|
}
|
|
|
|
|
2016-09-22 21:36:26 +02:00
|
|
|
RegexMatchList::const_iterator find_next_begin(BufferCoord pos) const
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
2014-06-16 20:41:07 +02:00
|
|
|
return std::lower_bound(begin_matches.begin(), begin_matches.end(),
|
|
|
|
pos, compare_to_begin);
|
2014-06-11 22:26:01 +02:00
|
|
|
}
|
|
|
|
|
2017-02-07 00:00:13 +01:00
|
|
|
RegexMatchList::const_iterator find_matching_end(BufferCoord beg_pos, Optional<StringView> capture) const
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
|
|
|
auto end_it = end_matches.begin();
|
|
|
|
auto rec_it = recurse_matches.begin();
|
|
|
|
int recurse_level = 0;
|
|
|
|
while (true)
|
|
|
|
{
|
2017-02-07 00:00:13 +01:00
|
|
|
end_it = std::lower_bound(end_it, end_matches.end(), beg_pos,
|
|
|
|
compare_to_begin);
|
|
|
|
rec_it = std::lower_bound(rec_it, recurse_matches.end(), beg_pos,
|
|
|
|
compare_to_begin);
|
2014-06-11 22:26:01 +02:00
|
|
|
|
|
|
|
if (end_it == end_matches.end())
|
|
|
|
return end_it;
|
|
|
|
|
|
|
|
while (rec_it != recurse_matches.end() and
|
2015-02-02 14:48:27 +01:00
|
|
|
rec_it->end_coord() <= end_it->begin_coord())
|
2014-06-11 22:26:01 +02:00
|
|
|
{
|
2017-02-07 00:00:13 +01:00
|
|
|
if (not capture or rec_it->capture == *capture)
|
|
|
|
++recurse_level;
|
2014-06-11 22:26:01 +02:00
|
|
|
++rec_it;
|
|
|
|
}
|
|
|
|
|
2017-02-07 00:00:13 +01:00
|
|
|
if (not capture or *capture == end_it->capture)
|
|
|
|
{
|
|
|
|
if (recurse_level == 0)
|
|
|
|
return end_it;
|
|
|
|
--recurse_level;
|
|
|
|
}
|
2014-06-11 22:26:01 +02:00
|
|
|
|
2014-06-16 20:41:07 +02:00
|
|
|
beg_pos = end_it->end_coord();
|
2014-06-11 22:26:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RegionDesc
|
|
|
|
{
|
2016-10-01 15:12:21 +02:00
|
|
|
String m_name;
|
2014-06-11 22:26:01 +02:00
|
|
|
Regex m_begin;
|
|
|
|
Regex m_end;
|
|
|
|
Regex m_recurse;
|
2017-02-07 00:00:13 +01:00
|
|
|
bool m_match_capture;
|
2014-06-11 22:26:01 +02:00
|
|
|
|
|
|
|
RegionMatches find_matches(const Buffer& buffer) const
|
|
|
|
{
|
|
|
|
RegionMatches res;
|
2017-02-07 00:00:13 +01:00
|
|
|
Kakoune::find_matches(buffer, res.begin_matches, m_begin, m_match_capture);
|
|
|
|
Kakoune::find_matches(buffer, res.end_matches, m_end, m_match_capture);
|
2014-06-11 22:26:01 +02:00
|
|
|
if (not m_recurse.empty())
|
2017-02-07 00:00:13 +01:00
|
|
|
Kakoune::find_matches(buffer, res.recurse_matches, m_recurse, m_match_capture);
|
2014-06-11 22:26:01 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void update_matches(const Buffer& buffer,
|
2015-03-09 14:48:41 +01:00
|
|
|
ConstArrayView<LineModification> modifs,
|
2014-06-11 22:26:01 +02:00
|
|
|
RegionMatches& matches) const
|
|
|
|
{
|
2017-02-07 00:00:13 +01:00
|
|
|
Kakoune::update_matches(buffer, modifs, matches.begin_matches, m_begin, m_match_capture);
|
|
|
|
Kakoune::update_matches(buffer, modifs, matches.end_matches, m_end, m_match_capture);
|
2014-06-11 22:26:01 +02:00
|
|
|
if (not m_recurse.empty())
|
2017-02-07 00:00:13 +01:00
|
|
|
Kakoune::update_matches(buffer, modifs, matches.recurse_matches, m_recurse, m_match_capture);
|
2014-01-06 22:04:55 +01:00
|
|
|
}
|
2013-12-04 01:48:46 +01:00
|
|
|
};
|
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
struct RegionsHighlighter : public Highlighter
|
2014-06-12 00:29:23 +02:00
|
|
|
{
|
|
|
|
public:
|
2016-10-01 15:12:21 +02:00
|
|
|
using RegionDescList = Vector<RegionDesc, MemoryDomain::Highlight>;
|
2014-06-12 00:29:23 +02:00
|
|
|
|
2016-10-01 15:12:21 +02:00
|
|
|
RegionsHighlighter(RegionDescList regions, String default_group)
|
2017-05-03 20:41:37 +02:00
|
|
|
: Highlighter{HighlightPass::Colorize},
|
|
|
|
m_regions{std::move(regions)},
|
|
|
|
m_default_group{std::move(default_group)}
|
2014-06-12 00:29:23 +02:00
|
|
|
{
|
|
|
|
if (m_regions.empty())
|
|
|
|
throw runtime_error("at least one region must be defined");
|
|
|
|
|
|
|
|
for (auto& region : m_regions)
|
2014-10-22 01:20:09 +02:00
|
|
|
{
|
2017-05-03 20:41:37 +02:00
|
|
|
m_groups.insert({region.m_name, HighlighterGroup{HighlightPass::Colorize}});
|
2016-10-01 15:12:21 +02:00
|
|
|
if (region.m_begin.empty() or region.m_end.empty())
|
2014-06-12 00:29:23 +02:00
|
|
|
throw runtime_error("invalid regex for region highlighter");
|
2014-10-22 01:20:09 +02:00
|
|
|
}
|
|
|
|
if (not m_default_group.empty())
|
2017-05-03 20:41:37 +02:00
|
|
|
m_groups.insert({m_default_group, HighlighterGroup{HighlightPass::Colorize}});
|
2014-06-12 00:29:23 +02:00
|
|
|
}
|
|
|
|
|
2017-05-03 20:41:37 +02:00
|
|
|
void do_highlight(const Context& context, HighlightPass pass, DisplayBuffer& display_buffer, BufferRange range) override
|
2014-06-12 00:29:23 +02:00
|
|
|
{
|
2014-12-02 20:56:17 +01:00
|
|
|
auto display_range = display_buffer.range();
|
2014-06-12 00:29:23 +02:00
|
|
|
const auto& buffer = context.buffer();
|
2014-12-02 20:56:17 +01:00
|
|
|
auto& regions = get_regions_for_range(buffer, range);
|
2014-06-12 00:29:23 +02:00
|
|
|
|
2015-04-23 22:38:45 +02:00
|
|
|
auto begin = std::lower_bound(regions.begin(), regions.end(), display_range.begin,
|
2016-09-22 21:36:26 +02:00
|
|
|
[](const Region& r, BufferCoord c) { return r.end < c; });
|
2015-04-23 22:38:45 +02:00
|
|
|
auto end = std::lower_bound(begin, regions.end(), display_range.end,
|
2016-09-22 21:36:26 +02:00
|
|
|
[](const Region& r, BufferCoord c) { return r.begin < c; });
|
|
|
|
auto correct = [&](BufferCoord c) -> BufferCoord {
|
2015-03-23 20:18:56 +01:00
|
|
|
if (not buffer.is_end(c) and buffer[c.line].length() == c.column)
|
2014-06-12 00:29:23 +02:00
|
|
|
return {c.line+1, 0};
|
|
|
|
return c;
|
|
|
|
};
|
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
auto default_group_it = m_groups.find(m_default_group);
|
|
|
|
const bool apply_default = default_group_it != m_groups.end();
|
2014-06-12 00:29:23 +02:00
|
|
|
|
2015-02-16 14:25:17 +01:00
|
|
|
auto last_begin = (begin == regions.begin()) ?
|
2016-09-22 21:36:26 +02:00
|
|
|
BufferCoord{0,0} : (begin-1)->end;
|
2016-07-15 21:26:58 +02:00
|
|
|
kak_assert(begin <= end);
|
2014-06-12 00:29:23 +02:00
|
|
|
for (; begin != end; ++begin)
|
|
|
|
{
|
|
|
|
if (apply_default and last_begin < begin->begin)
|
2017-05-03 20:41:37 +02:00
|
|
|
apply_highlighter(context, display_buffer, pass,
|
2014-06-12 00:29:23 +02:00
|
|
|
correct(last_begin), correct(begin->begin),
|
2015-09-16 20:57:57 +02:00
|
|
|
default_group_it->value);
|
2014-06-12 00:29:23 +02:00
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
auto it = m_groups.find(begin->group);
|
|
|
|
if (it == m_groups.end())
|
2014-06-12 00:29:23 +02:00
|
|
|
continue;
|
2017-05-03 20:41:37 +02:00
|
|
|
apply_highlighter(context, display_buffer, pass,
|
2014-06-12 00:29:23 +02:00
|
|
|
correct(begin->begin), correct(begin->end),
|
2015-09-16 20:57:57 +02:00
|
|
|
it->value);
|
2014-06-12 00:29:23 +02:00
|
|
|
last_begin = begin->end;
|
|
|
|
}
|
2015-04-23 22:38:45 +02:00
|
|
|
if (apply_default and last_begin < display_range.end)
|
2017-05-03 20:41:37 +02:00
|
|
|
apply_highlighter(context, display_buffer, pass,
|
2015-04-23 22:38:45 +02:00
|
|
|
correct(last_begin), range.end,
|
2015-09-16 20:57:57 +02:00
|
|
|
default_group_it->value);
|
2014-06-12 00:29:23 +02:00
|
|
|
}
|
2014-10-22 01:20:09 +02:00
|
|
|
|
|
|
|
bool has_children() const override { return true; }
|
|
|
|
|
|
|
|
Highlighter& get_child(StringView path) override
|
|
|
|
{
|
|
|
|
auto sep_it = find(path, '/');
|
|
|
|
StringView id(path.begin(), sep_it);
|
|
|
|
auto it = m_groups.find(id);
|
|
|
|
if (it == m_groups.end())
|
2015-06-01 20:06:35 +02:00
|
|
|
throw child_not_found(format("no such id: {}", id));
|
2014-10-22 01:20:09 +02:00
|
|
|
if (sep_it == path.end())
|
2015-09-16 20:57:57 +02:00
|
|
|
return it->value;
|
2014-10-22 01:20:09 +02:00
|
|
|
else
|
2015-09-16 20:57:57 +02:00
|
|
|
return it->value.get_child({sep_it+1, path.end()});
|
2014-10-22 01:20:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Completions complete_child(StringView path, ByteCount cursor_pos, bool group) const override
|
|
|
|
{
|
|
|
|
auto sep_it = find(path, '/');
|
|
|
|
if (sep_it != path.end())
|
|
|
|
{
|
|
|
|
ByteCount offset = sep_it+1 - path.begin();
|
|
|
|
Highlighter& hl = const_cast<RegionsHighlighter*>(this)->get_child({path.begin(), sep_it});
|
|
|
|
return offset_pos(hl.complete_child(path.substr(offset), cursor_pos - offset, group), offset);
|
|
|
|
}
|
|
|
|
|
2017-03-07 02:12:37 +01:00
|
|
|
auto container = m_groups | transform(std::mem_fn(&decltype(m_groups)::Item::key));
|
2014-12-23 14:54:09 +01:00
|
|
|
return { 0, 0, complete(path, cursor_pos, container) };
|
2014-10-22 01:20:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HighlighterAndId create(HighlighterParameters params)
|
|
|
|
{
|
2015-07-14 22:06:41 +02:00
|
|
|
static const ParameterDesc param_desc{
|
2017-02-07 00:00:13 +01:00
|
|
|
{ { "default", { true, "" } }, { "match-capture", { false, "" } } },
|
2015-07-14 22:06:41 +02:00
|
|
|
ParameterDesc::Flags::SwitchesOnlyAtStart, 5
|
|
|
|
};
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2015-07-14 22:06:41 +02:00
|
|
|
ParametersParser parser{params, param_desc};
|
|
|
|
if ((parser.positional_count() % 4) != 1)
|
2017-04-24 08:04:15 +02:00
|
|
|
throw runtime_error("wrong parameter count, expected <id> (<group name> <begin> <end> <recurse>)+");
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2017-02-07 00:00:13 +01:00
|
|
|
const bool match_capture = (bool)parser.get_switch("match-capture");
|
2016-10-01 15:12:21 +02:00
|
|
|
RegionsHighlighter::RegionDescList regions;
|
2015-07-14 22:06:41 +02:00
|
|
|
for (size_t i = 1; i < parser.positional_count(); i += 4)
|
|
|
|
{
|
|
|
|
if (parser[i].empty() or parser[i+1].empty() or parser[i+2].empty())
|
|
|
|
throw runtime_error("group id, begin and end must not be empty");
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2017-02-07 00:00:13 +01:00
|
|
|
const Regex::flag_type flags = match_capture ?
|
|
|
|
Regex::optimize : Regex::nosubs | Regex::optimize;
|
2014-10-22 01:20:09 +02:00
|
|
|
|
2017-04-24 08:04:15 +02:00
|
|
|
regions.push_back({ parser[i],
|
|
|
|
Regex{parser[i+1], flags}, Regex{parser[i+2], flags},
|
|
|
|
parser[i+3].empty() ? Regex{} : Regex{parser[i+3], flags},
|
|
|
|
match_capture });
|
2014-10-22 01:20:09 +02:00
|
|
|
}
|
2015-07-14 22:06:41 +02:00
|
|
|
|
|
|
|
auto default_group = parser.get_switch("default").value_or(StringView{}).str();
|
|
|
|
return {parser[0], make_unique<RegionsHighlighter>(std::move(regions), default_group)};
|
2014-10-22 01:20:09 +02:00
|
|
|
}
|
|
|
|
|
2014-06-12 00:29:23 +02:00
|
|
|
private:
|
2016-10-01 15:12:21 +02:00
|
|
|
const RegionDescList m_regions;
|
2014-06-12 00:29:23 +02:00
|
|
|
const String m_default_group;
|
2017-03-07 02:12:37 +01:00
|
|
|
HashMap<String, HighlighterGroup, MemoryDomain::Highlight> m_groups;
|
2014-06-12 00:29:23 +02:00
|
|
|
|
|
|
|
struct Region
|
|
|
|
{
|
2016-09-22 21:36:26 +02:00
|
|
|
BufferCoord begin;
|
|
|
|
BufferCoord end;
|
2014-06-12 00:29:23 +02:00
|
|
|
StringView group;
|
|
|
|
};
|
2015-01-12 14:24:30 +01:00
|
|
|
using RegionList = Vector<Region, MemoryDomain::Highlight>;
|
2014-06-12 00:29:23 +02:00
|
|
|
|
|
|
|
struct Cache
|
|
|
|
{
|
|
|
|
size_t timestamp = 0;
|
2015-01-12 14:24:30 +01:00
|
|
|
Vector<RegionMatches, MemoryDomain::Highlight> matches;
|
2017-03-07 01:30:54 +01:00
|
|
|
HashMap<BufferRange, RegionList, MemoryDomain::Highlight> regions;
|
2014-06-12 00:29:23 +02:00
|
|
|
};
|
|
|
|
BufferSideCache<Cache> m_cache;
|
|
|
|
|
2014-07-14 22:42:19 +02:00
|
|
|
using RegionAndMatch = std::pair<size_t, RegexMatchList::const_iterator>;
|
2014-06-12 00:29:23 +02:00
|
|
|
|
|
|
|
// find the begin closest to pos in all matches
|
2016-09-22 21:36:26 +02:00
|
|
|
RegionAndMatch find_next_begin(const Cache& cache, BufferCoord pos) const
|
2014-06-12 00:29:23 +02:00
|
|
|
{
|
|
|
|
RegionAndMatch res{0, cache.matches[0].find_next_begin(pos)};
|
|
|
|
for (size_t i = 1; i < cache.matches.size(); ++i)
|
|
|
|
{
|
|
|
|
const auto& matches = cache.matches[i];
|
|
|
|
auto it = matches.find_next_begin(pos);
|
|
|
|
if (it != matches.begin_matches.end() and
|
|
|
|
(res.second == cache.matches[res.first].begin_matches.end() or
|
|
|
|
it->begin_coord() < res.second->begin_coord()))
|
|
|
|
res = RegionAndMatch{i, it};
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-12-02 20:56:17 +01:00
|
|
|
const RegionList& get_regions_for_range(const Buffer& buffer, BufferRange range)
|
2014-06-12 00:29:23 +02:00
|
|
|
{
|
|
|
|
Cache& cache = m_cache.get(buffer);
|
|
|
|
const size_t buf_timestamp = buffer.timestamp();
|
2014-12-02 20:56:17 +01:00
|
|
|
if (cache.timestamp != buf_timestamp)
|
2014-06-12 00:29:23 +02:00
|
|
|
{
|
2014-12-02 20:56:17 +01:00
|
|
|
if (cache.timestamp == 0)
|
|
|
|
{
|
|
|
|
cache.matches.resize(m_regions.size());
|
|
|
|
for (size_t i = 0; i < m_regions.size(); ++i)
|
2016-10-01 15:12:21 +02:00
|
|
|
cache.matches[i] = m_regions[i].find_matches(buffer);
|
2014-12-02 20:56:17 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto modifs = compute_line_modifications(buffer, cache.timestamp);
|
|
|
|
for (size_t i = 0; i < m_regions.size(); ++i)
|
2016-10-01 15:12:21 +02:00
|
|
|
m_regions[i].update_matches(buffer, modifs, cache.matches[i]);
|
2014-12-02 20:56:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cache.regions.clear();
|
2014-06-12 00:29:23 +02:00
|
|
|
}
|
|
|
|
|
2014-12-02 20:56:17 +01:00
|
|
|
auto it = cache.regions.find(range);
|
|
|
|
if (it != cache.regions.end())
|
2017-03-07 01:30:54 +01:00
|
|
|
return it->value;
|
2014-12-02 20:56:17 +01:00
|
|
|
|
|
|
|
RegionList& regions = cache.regions[range];
|
2014-06-12 00:29:23 +02:00
|
|
|
|
2015-04-23 22:38:45 +02:00
|
|
|
for (auto begin = find_next_begin(cache, range.begin),
|
2014-06-12 00:29:23 +02:00
|
|
|
end = RegionAndMatch{ 0, cache.matches[0].begin_matches.end() };
|
|
|
|
begin != end; )
|
|
|
|
{
|
|
|
|
const RegionMatches& matches = cache.matches[begin.first];
|
2016-10-01 15:12:21 +02:00
|
|
|
auto& region = m_regions[begin.first];
|
2014-06-12 00:29:23 +02:00
|
|
|
auto beg_it = begin.second;
|
2017-02-07 00:00:13 +01:00
|
|
|
auto end_it = matches.find_matching_end(beg_it->end_coord(),
|
|
|
|
region.m_match_capture ? beg_it->capture
|
|
|
|
: Optional<StringView>{});
|
2014-06-12 00:29:23 +02:00
|
|
|
|
2015-04-23 22:38:45 +02:00
|
|
|
if (end_it == matches.end_matches.end() or end_it->end_coord() >= range.end)
|
2014-06-12 00:29:23 +02:00
|
|
|
{
|
2014-12-02 20:56:17 +01:00
|
|
|
regions.push_back({ {beg_it->line, beg_it->begin},
|
2015-04-23 22:38:45 +02:00
|
|
|
range.end,
|
2016-10-01 15:12:21 +02:00
|
|
|
region.m_name });
|
2014-06-12 00:29:23 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-12-02 20:56:17 +01:00
|
|
|
regions.push_back({ beg_it->begin_coord(),
|
|
|
|
end_it->end_coord(),
|
2016-10-01 15:12:21 +02:00
|
|
|
region.m_name });
|
2014-07-14 21:46:46 +02:00
|
|
|
auto end_coord = end_it->end_coord();
|
|
|
|
|
|
|
|
// With empty begin and end matches (for example if the regexes
|
|
|
|
// are /"\K/ and /(?=")/), that case can happen, and would
|
|
|
|
// result in an infinite loop.
|
|
|
|
if (end_coord == beg_it->begin_coord())
|
|
|
|
{
|
|
|
|
kak_assert(beg_it->begin_coord() == beg_it->end_coord() and
|
|
|
|
end_it->begin_coord() == end_it->end_coord());
|
|
|
|
++end_coord.column;
|
|
|
|
}
|
|
|
|
begin = find_next_begin(cache, end_coord);
|
2014-06-12 00:29:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
cache.timestamp = buf_timestamp;
|
2014-12-02 20:56:17 +01:00
|
|
|
return regions;
|
2014-06-12 00:29:23 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-11-29 23:37:20 +01:00
|
|
|
void register_highlighters()
|
2011-11-08 15:28:01 +01:00
|
|
|
{
|
2011-11-29 23:37:20 +01:00
|
|
|
HighlighterRegistry& registry = HighlighterRegistry::instance();
|
2011-11-15 15:28:03 +01:00
|
|
|
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-02-19 14:54:03 +01:00
|
|
|
"number_lines",
|
2017-04-27 20:27:28 +02:00
|
|
|
{ LineNumbersHighlighter::create,
|
2015-03-18 22:07:57 +01:00
|
|
|
"Display line numbers \n"
|
2015-09-25 14:47:57 +02:00
|
|
|
"Parameters: -relative, -hlcursor, -separator <separator text>\n" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-02-19 14:54:03 +01:00
|
|
|
"show_matching",
|
2015-04-23 21:27:42 +02:00
|
|
|
{ create_matching_char_highlighter,
|
2015-02-19 14:54:03 +01:00
|
|
|
"Apply the MatchingChar face to the char matching the one under the cursor" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-02-19 14:54:03 +01:00
|
|
|
"show_whitespaces",
|
2017-02-04 08:10:14 +01:00
|
|
|
{ show_whitespaces_factory,
|
|
|
|
"Display whitespaces using symbols \n"
|
|
|
|
"Parameters: -tab <separator> -tabpad <separator> -lf <separator> -spc <separator> -nbsp <separator>\n" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-02-19 14:54:03 +01:00
|
|
|
"fill",
|
|
|
|
{ create_fill_highlighter,
|
|
|
|
"Fill the whole highlighted range with the given face" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-02-19 14:54:03 +01:00
|
|
|
"regex",
|
|
|
|
{ RegexHighlighter::create,
|
|
|
|
"Parameters: <regex> <capture num>:<face> <capture num>:<face>...\n"
|
|
|
|
"Highlights the matches for captures from the regex with the given faces" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-11-09 10:34:03 +01:00
|
|
|
"dynregex",
|
|
|
|
{ create_dynamic_regex_highlighter,
|
|
|
|
"Parameters: <expr> <capture num>:<face> <capture num>:<face>...\n"
|
|
|
|
"Evaluate expression at every redraw to gather a regex" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-02-19 14:54:03 +01:00
|
|
|
"group",
|
|
|
|
{ create_highlighter_group,
|
|
|
|
"Parameters: <group name>\n"
|
|
|
|
"Creates a named group that can contain other highlighters" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-02-19 14:54:03 +01:00
|
|
|
"flag_lines",
|
2017-04-27 20:27:28 +02:00
|
|
|
{ FlagLinesHighlighter::create,
|
2015-02-19 14:54:03 +01:00
|
|
|
"Parameters: <option name> <bg color>\n"
|
|
|
|
"Display flags specified in the line-flag-list option <option name>\n"
|
|
|
|
"A line-flag is written: <line>|<fg color>|<text>, the list is : separated" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-12-17 05:07:09 +01:00
|
|
|
"ranges",
|
|
|
|
{ create_ranges_highlighter,
|
|
|
|
"Parameters: <option name>\n"
|
|
|
|
"Use the range-faces option given as parameter to highlight buffer\n" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-05-04 18:12:51 +02:00
|
|
|
"line",
|
|
|
|
{ create_line_highlighter,
|
|
|
|
"Parameters: <value string> <face>\n"
|
|
|
|
"Highlight the line given by evaluating <value string> with <face>" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-05-04 18:12:51 +02:00
|
|
|
"column",
|
|
|
|
{ create_column_highlighter,
|
|
|
|
"Parameters: <value string> <face>\n"
|
|
|
|
"Highlight the column given by evaluating <value string> with <face>" } });
|
2016-01-24 07:34:51 +01:00
|
|
|
registry.insert({
|
|
|
|
"wrap",
|
2017-04-27 20:27:28 +02:00
|
|
|
{ WrapHighlighter::create,
|
2016-01-24 07:34:51 +01:00
|
|
|
"Parameters: <value string>\n"
|
|
|
|
"Wrap lines to given column" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-02-19 14:54:03 +01:00
|
|
|
"ref",
|
|
|
|
{ create_reference_highlighter,
|
|
|
|
"Parameters: <path>\n"
|
|
|
|
"Reference the highlighter at <path> in shared highglighters" } });
|
2017-03-07 02:12:37 +01:00
|
|
|
registry.insert({
|
2015-02-19 14:54:03 +01:00
|
|
|
"regions",
|
|
|
|
{ RegionsHighlighter::create,
|
2017-02-07 00:00:13 +01:00
|
|
|
"Parameters: [-default <default group>] [-match-capture] <name> {<region name> <begin> <end> <recurse>}..."
|
2015-02-19 14:54:03 +01:00
|
|
|
"Split the highlighting into regions defined by the <begin>, <end> and <recurse> regex\n"
|
2015-06-11 20:04:30 +02:00
|
|
|
"The region <region name> starts at <begin> match, end at <end> match that does not\n"
|
2015-02-19 14:54:03 +01:00
|
|
|
"close a <recurse> match. In between region is the <default group>.\n"
|
2017-02-07 00:00:13 +01:00
|
|
|
"Highlighting a region is done by adding highlighters into the different <region name> subgroups.\n"
|
|
|
|
"If -match-capture is specified, then regions end/recurse matches are must have the same \1\n"
|
|
|
|
"capture content as the begin to be considered"} });
|
2011-11-08 15:28:01 +01:00
|
|
|
}
|
|
|
|
|
2011-09-30 21:16:23 +02:00
|
|
|
}
|