#include "highlighters.hh" #include "assert.hh" #include "buffer_utils.hh" #include "changes.hh" #include "command_manager.hh" #include "context.hh" #include "clock.hh" #include "display_buffer.hh" #include "face_registry.hh" #include "highlighter_group.hh" #include "line_modification.hh" #include "option_types.hh" #include "parameters_parser.hh" #include "ranges.hh" #include "regex.hh" #include "register_manager.hh" #include "string.hh" #include "utf8.hh" #include "utf8_iterator.hh" #include "window.hh" #include #include namespace Kakoune { using Utf8Iterator = utf8::iterator; template std::unique_ptr make_highlighter(Func func, HighlightPass pass = HighlightPass::Colorize) { struct SimpleHighlighter : public Highlighter { SimpleHighlighter(Func func, HighlightPass pass) : Highlighter{pass}, m_func{std::move(func)} {} private: void do_highlight(HighlightContext context, DisplayBuffer& display_buffer, BufferRange range) override { m_func(context, display_buffer, range); } Func m_func; }; return std::make_unique(std::move(func), pass); } template void highlight_range(DisplayBuffer& display_buffer, BufferCoord begin, BufferCoord end, bool skip_replaced, T func) { // tolerate begin > end as that can be triggered by wrong encodings if (begin >= end or end <= display_buffer.range().begin or begin >= display_buffer.range().end) return; for (auto& line : display_buffer.lines()) { auto& range = line.range(); if (range.end <= begin or end < range.begin) continue; for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it) { bool is_replaced = atom_it->type() == DisplayAtom::ReplacedRange; if (not atom_it->has_buffer_range() or (skip_replaced and is_replaced) or end <= atom_it->begin() or begin >= atom_it->end()) continue; if (not is_replaced and begin > atom_it->begin()) atom_it = ++line.split(atom_it, begin); if (not is_replaced and end < atom_it->end()) { atom_it = line.split(atom_it, end); func(*atom_it); ++atom_it; } else func(*atom_it); } } } template void replace_range(DisplayBuffer& display_buffer, BufferCoord begin, BufferCoord end, T func) { // tolerate begin > end as that can be triggered by wrong encodings if (begin > end or end < display_buffer.range().begin or begin > display_buffer.range().end) return; auto& lines = display_buffer.lines(); auto first_it = std::lower_bound(lines.begin(), lines.end(), begin, [](const DisplayLine& l, const BufferCoord& c) { return l.range().end < c; }); if (first_it == lines.end()) return; auto first_atom_it = std::find_if(first_it->begin(), first_it->end(), [&begin](const DisplayAtom& a) { return a.has_buffer_range() and a.end() > begin; }); first_atom_it = first_it->split(begin); auto last_it = std::lower_bound(first_it, lines.end(), end, [](const DisplayLine& l, const BufferCoord& c) { return l.range().end < c; }); if (first_it == last_it) { auto first_atom_idx = first_atom_it - first_it->begin(); auto end_atom_it = first_it->split(end); first_atom_it = first_it->erase(first_it->begin() + first_atom_idx, end_atom_it); } else { first_atom_it = first_it->erase(first_atom_it, first_it->end()); if (last_it != lines.end()) { auto end_atom_it = last_it->split(end); end_atom_it = last_it->erase(last_it->begin(), end_atom_it); first_atom_it = first_it->insert(first_atom_it, end_atom_it, last_it->end()); ++last_it; } first_it = --lines.erase(first_it+1, last_it); } func(*first_it, first_atom_it); } auto apply_face = [](const Face& face) { return [&face](DisplayAtom& atom) { atom.face = merge_faces(atom.face, face); }; }; const HighlighterDesc fill_desc = { "Fill the whole highlighted range with the given face", {} }; static std::unique_ptr create_fill_highlighter(HighlighterParameters params, Highlighter*) { if (params.size() != 1) throw runtime_error("wrong parameter count"); return make_highlighter( [spec=parse_face(params[0])](HighlightContext context, DisplayBuffer& display_buffer, BufferRange range) { highlight_range(display_buffer, range.begin, range.end, false, apply_face(context.context.faces()[spec])); }); } template struct BufferSideCache { BufferSideCache() : m_id{get_free_value_id()} {} T& get(const Buffer& buffer) { Value& cache_val = buffer.values()[m_id]; if (not cache_val) cache_val = Value(T{}); return cache_val.as(); } private: ValueId m_id; }; using FacesSpec = Vector, MemoryDomain::Highlight>; const HighlighterDesc regex_desc = { "Parameters: : :...\n" "Highlights the matches for captures from the regex with the given faces", {} }; class RegexHighlighter : public Highlighter { public: RegexHighlighter(Regex regex, FacesSpec faces) : Highlighter{HighlightPass::Colorize}, m_regex{std::move(regex)}, m_faces{std::move(faces)} { ensure_first_face_is_capture_0(); } void do_highlight(HighlightContext context, DisplayBuffer& display_buffer, BufferRange range) override { auto overlaps = [](const BufferRange& lhs, const BufferRange& rhs) { return lhs.begin < rhs.begin ? lhs.end > rhs.begin : rhs.end > lhs.begin; }; if (not overlaps(display_buffer.range(), range)) return; const auto faces = m_faces | transform([&faces = context.context.faces()](auto&& spec) { return faces[spec.second]; }) | gather(); const auto& matches = get_matches(context.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, matches[m].begin, matches[m].end, false, apply_face(face)); } } void reset(Regex regex, FacesSpec faces) { m_regex = std::move(regex); m_faces = std::move(faces); ensure_first_face_is_capture_0(); ++m_regex_version; } static std::unique_ptr create(HighlighterParameters params, Highlighter*) { if (params.size() < 2) throw runtime_error("wrong parameter count"); Regex re{params[0], RegexCompileFlags::Optimize}; FacesSpec faces; for (auto& spec : params.subrange(1)) { auto colon = find(spec, ':'); if (colon == spec.end()) throw runtime_error(format("wrong face spec: '{}' expected :", spec)); const StringView capture_name{spec.begin(), colon}; const int capture = str_to_int_ifp(capture_name).value_or_compute([&] { return re.named_capture_index(capture_name); }); if (capture < 0) throw runtime_error(format("capture name {} is neither a capture index, nor an existing capture name", capture_name)); faces.emplace_back(capture, parse_face({colon+1, spec.end()})); } return std::make_unique(std::move(re), std::move(faces)); } private: // stores the range for each highlighted capture of each match using MatchList = Vector; struct Cache { size_t m_timestamp = -1; size_t m_regex_version = -1; struct RangeAndMatches { BufferRange range; MatchList matches; }; using RangeAndMatchesList = Vector; HashMap m_matches; }; BufferSideCache m_cache; Regex m_regex; FacesSpec m_faces; size_t m_regex_version = 0; void ensure_first_face_is_capture_0() { if (m_faces.empty()) return; std::sort(m_faces.begin(), m_faces.end(), [](auto&& lhs, auto&& rhs) { return lhs.first < rhs.first; }); if (m_faces[0].first != 0) m_faces.emplace(m_faces.begin(), 0, FaceSpec{}); } void add_matches(const Buffer& buffer, MatchList& matches, BufferRange range) { kak_assert(matches.size() % m_faces.size() == 0); for (auto&& match : RegexIterator{get_iterator(buffer, range.begin), get_iterator(buffer, range.end), buffer.begin(), buffer.end(), m_regex, match_flags(is_bol(range.begin), is_eol(buffer, range.end), is_bow(buffer, range.begin), is_eow(buffer, range.end))}) { for (auto& face : m_faces) { const auto& sub = match[face.first]; matches.push_back({sub.first.coord(), sub.second.coord()}); } } } const MatchList& get_matches(const Buffer& buffer, BufferRange display_range, BufferRange buffer_range) { Cache& cache = m_cache.get(buffer); if (cache.m_regex_version != m_regex_version or cache.m_timestamp != buffer.timestamp() or accumulate(cache.m_matches, (size_t)0, [](size_t c, auto&& m) { return c + m.value.size(); }) > 1000) { cache.m_matches.clear(); cache.m_timestamp = buffer.timestamp(); cache.m_regex_version = m_regex_version; } auto& matches = cache.m_matches[buffer_range]; const LineCount line_offset = 3; BufferRange range{std::max(buffer_range.begin, display_range.begin.line - line_offset), std::min(buffer_range.end, display_range.end.line + line_offset)}; auto it = std::upper_bound(matches.begin(), matches.end(), range.begin, [](const BufferCoord& lhs, const Cache::RangeAndMatches& rhs) { return lhs < rhs.range.end; }); if (it == matches.end() or it->range.begin > range.end) { it = matches.insert(it, Cache::RangeAndMatches{range, {}}); add_matches(buffer, it->matches, range); } else if (it->matches.empty()) { it->range = range; add_matches(buffer, it->matches, range); } else { // 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. BufferRange& old_range = it->range; MatchList& matches = it->matches; // Thanks to the ensure_first_face_is_capture_0 method, we know // these point to the first/last matches capture 0. auto first_end = matches.begin()->end; auto last_end = (matches.end() - m_faces.size())->end; // add regex matches from new begin to old first match end if (range.begin < old_range.begin) { matches.erase(matches.begin(), matches.begin() + m_faces.size()); size_t pivot = matches.size(); old_range.begin = range.begin; add_matches(buffer, matches, {range.begin, first_end}); std::rotate(matches.begin(), matches.begin() + pivot, matches.end()); } // add regex matches from old last match begin to new end if (old_range.end < range.end) { old_range.end = range.end; add_matches(buffer, matches, {last_end, range.end}); } } return it->matches; } }; template class DynamicRegexHighlighter : public Highlighter { public: DynamicRegexHighlighter(RegexGetter regex_getter, FaceGetter face_getter) : Highlighter{HighlightPass::Colorize}, m_regex_getter(std::move(regex_getter)), m_face_getter(std::move(face_getter)), m_highlighter(Regex{}, FacesSpec{}) {} void do_highlight(HighlightContext context, DisplayBuffer& display_buffer, BufferRange range) override { Regex regex = m_regex_getter(context.context); FacesSpec face = regex.empty() ? FacesSpec{} : m_face_getter(context.context, regex); if (regex != m_last_regex or face != m_last_face) { m_last_regex = std::move(regex); m_last_face = face; if (not m_last_regex.empty()) m_highlighter.reset(m_last_regex, m_last_face); } if (not m_last_regex.empty() and not m_last_face.empty()) m_highlighter.highlight(context, display_buffer, range); } private: Regex m_last_regex; RegexGetter m_regex_getter; FacesSpec m_last_face; FaceGetter m_face_getter; RegexHighlighter m_highlighter; }; const HighlighterDesc dynamic_regex_desc = { "Parameters: : :...\n" "Evaluate expression at every redraw to gather a regex", {} }; std::unique_ptr create_dynamic_regex_highlighter(HighlighterParameters params, Highlighter*) { if (params.size() < 2) throw runtime_error("wrong parameter count"); Vector> faces; for (auto& spec : params.subrange(1)) { auto colon = find(spec, ':'); if (colon == spec.end()) throw runtime_error("wrong face spec: '" + spec + "' expected :"); faces.emplace_back(String{spec.begin(), colon}, parse_face({colon+1, spec.end()})); } auto make_hl = [](auto& regex_getter, auto& face_getter) { return std::make_unique, std::remove_cvref_t>>( std::move(regex_getter), std::move(face_getter)); }; auto get_face = [faces=std::move(faces)](const Context& context, const Regex& regex){ FacesSpec spec; for (auto& face : faces) { const int capture = str_to_int_ifp(face.first).value_or_compute([&] { return regex.named_capture_index(face.first); }); if (capture < 0) { write_to_debug_buffer(format("Error while evaluating dynamic regex expression faces," " {} is neither a capture index nor a capture name", face.first)); return FacesSpec{}; } spec.emplace_back(capture, std::move(face.second)); } return spec; }; CommandParser parser{params[0]}; auto token = parser.read_token(true); if (token and parser.done() and token->type == Token::Type::OptionExpand and GlobalScope::instance().options()[token->content].is_of_type()) { auto get_regex = [option_name = token->content](const Context& context) { return context.options()[option_name].get(); }; return make_hl(get_regex, get_face); } auto get_regex = [expr = params[0]](const Context& context){ try { auto re = expand(expr, context); return re.empty() ? Regex{} : Regex{re}; } catch (runtime_error& err) { write_to_debug_buffer(format("Error while evaluating dynamic regex expression: {}", err.what())); return Regex{}; } }; return make_hl(get_regex, get_face); } const HighlighterDesc line_desc = { "Parameters: \n" "Highlight the line given by evaluating with ", {} }; std::unique_ptr create_line_highlighter(HighlighterParameters params, Highlighter*) { if (params.size() != 2) throw runtime_error("wrong parameter count"); auto func = [line_expr=params[0], facespec=parse_face(params[1])] (HighlightContext context, DisplayBuffer& display_buffer, BufferRange) { LineCount line = -1; try { line = str_to_int_ifp(expand(line_expr, context.context)).value_or(0) - 1; } catch (runtime_error& err) { write_to_debug_buffer( format("Error evaluating highlight line expression: {}", err.what())); } 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 = context.context.faces()[facespec]; ColumnCount column = 0; for (auto& atom : *it) { column += atom.length(); if (!atom.has_buffer_range()) continue; kak_assert(atom.begin().line == line); apply_face(face)(atom); } const ColumnCount remaining = context.context.window().dimensions().column - column; if (remaining > 0) it->push_back({String{' ', remaining}, face}); }; return make_highlighter(std::move(func)); } const HighlighterDesc column_desc = { "Parameters: \n" "Highlight the column given by evaluating with ", {} }; std::unique_ptr create_column_highlighter(HighlighterParameters params, Highlighter*) { if (params.size() != 2) throw runtime_error("wrong parameter count"); auto func = [col_expr=params[0], facespec=parse_face(params[1])] (HighlightContext context, DisplayBuffer& display_buffer, BufferRange) { ColumnCount column = -1; try { column = str_to_int_ifp(expand(col_expr, context.context)).value_or(0) - 1; } catch (runtime_error& err) { write_to_debug_buffer( format("Error evaluating highlight column expression: {}", err.what())); } if (column < 0) return; const auto face = context.context.faces()[facespec]; if (column < context.setup.first_column or column >= context.setup.first_column + context.context.window().dimensions().column) return; column += context.setup.widget_columns - context.setup.first_column; for (auto& line : display_buffer.lines()) { auto remaining_col = column; bool found = false; for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it) { const auto atom_len = atom_it->length(); if (remaining_col < atom_len) { if (remaining_col > 0) atom_it = ++line.split(atom_it, remaining_col); if (atom_it->length() > 1) atom_it = line.split(atom_it, 1_col); atom_it->face = merge_faces(atom_it->face, face); found = true; break; } remaining_col -= atom_len; } if (found) continue; if (remaining_col > 0) line.push_back({String{' ', remaining_col}, Face{}}); line.push_back({" ", face}); } }; return make_highlighter(std::move(func)); } const HighlighterDesc wrap_desc = { "Parameters: [-word] [-indent] [-width ] [-marker ]\n" "Wrap lines to window width", { { { "word", { {}, "wrap at word boundaries instead of codepoint boundaries" } }, { "indent", { {}, "preserve line indentation of the wrapped line" } }, { "width", { ArgCompleter{}, "wrap at the given column instead of the window's width" } }, { "marker", { ArgCompleter{}, "insert the given text at the beginning of the wrapped line" } }, }, ParameterDesc::Flags::None, 0, 0 } }; struct WrapHighlighter : Highlighter { WrapHighlighter(ColumnCount max_width, bool word_wrap, bool preserve_indent, String marker) : Highlighter{HighlightPass::Wrap}, m_word_wrap{word_wrap}, m_preserve_indent{preserve_indent}, m_max_width{max_width}, m_marker{std::move(marker)} {} static constexpr StringView ms_id = "wrap"; struct SplitPos{ ByteCount byte; ColumnCount column; }; void do_highlight(HighlightContext context, DisplayBuffer& display_buffer, BufferRange) override { if (contains(context.disabled_ids, ms_id)) return; const ColumnCount wrap_column = std::min(m_max_width, context.context.window().dimensions().column - context.setup.widget_columns); if (wrap_column <= 0) return; const Buffer& buffer = context.context.buffer(); const auto& cursor = context.context.selections().main().cursor(); const int tabstop = context.context.options()["tabstop"].get(); const LineCount win_height = context.context.window().dimensions().line; const ColumnCount marker_len = zero_if_greater(m_marker.column_length(), wrap_column); const Face face_marker = context.context.faces()["WrapMarker"]; 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(); const ColumnCount indent = m_preserve_indent ? zero_if_greater(line_indent(buffer, tabstop, buf_line), wrap_column) : 0_col; const ColumnCount prefix_len = std::max(marker_len, indent); auto pos = next_split_pos(buffer, wrap_column, prefix_len, tabstop, buf_line, {0, 0}); if (pos.byte == line_length) continue; for (auto atom_it = it->begin(); pos.byte != line_length and atom_it != it->end(); ) { const BufferCoord coord{buf_line, pos.byte}; 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); DisplayLine new_line{ AtomList{ atom_it, line.end() } }; line.erase(atom_it, line.end()); if (marker_len != 0) new_line.insert(new_line.begin(), {m_marker, face_marker}); if (indent > marker_len) { auto it = new_line.insert(new_line.begin() + (marker_len > 0), {buffer, {coord, coord}}); it->replace(String{' ', indent - marker_len}); } if (it+1 - display_buffer.lines().begin() == win_height) { if (cursor >= new_line.range().begin) // strip first lines if cursor is not visible { display_buffer.lines().erase(display_buffer.lines().begin(), display_buffer.lines().begin()+1); --it; } else { display_buffer.lines().erase(it+1, display_buffer.lines().end()); return; } } it = display_buffer.lines().insert(it+1, new_line); pos = next_split_pos(buffer, wrap_column - prefix_len, prefix_len, tabstop, buf_line, pos); atom_it = it->begin(); } } } void do_compute_display_setup(HighlightContext context, DisplaySetup& setup) const override { if (contains(context.disabled_ids, ms_id)) return; const ColumnCount wrap_column = std::min(m_max_width, context.context.window().dimensions().column - setup.widget_columns); if (wrap_column <= 0) return; const Buffer& buffer = context.context.buffer(); const auto& cursor = context.context.selections().main().cursor(); const int tabstop = context.context.options()["tabstop"].get(); auto line_wrap_count = [&](LineCount line, ColumnCount prefix_len) { LineCount count = 0; const ByteCount line_length = buffer[line].length(); SplitPos pos{0, 0}; while (true) { pos = next_split_pos(buffer, wrap_column - (pos.byte == 0 ? 0_col : prefix_len), prefix_len, tabstop, line, pos); if (pos.byte == line_length) break; ++count; } return count; }; const auto win_height = context.context.window().dimensions().line; // Disable horizontal scrolling when using a WrapHighlighter setup.first_column = 0; setup.line_count = 0; setup.scroll_offset.column = 0; const ColumnCount marker_len = zero_if_greater(m_marker.column_length(), wrap_column); for (auto buf_line = setup.first_line, win_line = 0_line; win_line < win_height or buf_line <= cursor.line; ++buf_line, ++setup.line_count) { if (buf_line >= buffer.line_count()) break; const ColumnCount indent = m_preserve_indent ? zero_if_greater(line_indent(buffer, tabstop, buf_line), wrap_column) : 0_col; const ColumnCount prefix_len = std::max(marker_len, indent); if (buf_line == cursor.line) { SplitPos pos{0, 0}; for (LineCount count = 0; true; ++count) { auto next_pos = next_split_pos(buffer, wrap_column - (pos.byte != 0 ? prefix_len : 0_col), prefix_len, tabstop, buf_line, pos); if (next_pos.byte > cursor.column) { setup.cursor_pos = DisplayCoord{ win_line + count, get_column(buffer, tabstop, cursor) - pos.column + (pos.byte != 0 ? indent : 0_col) }; break; } pos = next_pos; } } const auto wrap_count = line_wrap_count(buf_line, prefix_len); win_line += wrap_count + 1; // scroll window to keep cursor visible, and update range as lines gets removed while (buf_line >= cursor.line and setup.first_line < cursor.line and setup.cursor_pos.line + setup.scroll_offset.line >= win_height) { auto remove_count = 1 + line_wrap_count(setup.first_line, indent); ++setup.first_line; --setup.line_count; setup.cursor_pos.line -= std::min(win_height, remove_count); win_line -= remove_count; kak_assert(setup.cursor_pos.line >= 0); } } } void fill_unique_ids(Vector& unique_ids) const override { unique_ids.push_back(ms_id); } SplitPos next_split_pos(const Buffer& buffer, ColumnCount wrap_column, ColumnCount prefix_len, int tabstop, LineCount line, SplitPos current) const { const ColumnCount target_column = current.column + wrap_column; StringView content = buffer[line]; SplitPos pos = current; SplitPos last_word_boundary = {0, 0}; SplitPos last_WORD_boundary = {0, 0}; auto update_boundaries = [&](Codepoint cp) { if (not m_word_wrap) return; if (!is_word(cp)) last_word_boundary = pos; if (!is_word(cp)) last_WORD_boundary = pos; }; while (pos.byte < content.length() and pos.column < target_column) { if (content[pos.byte] == '\t') { const ColumnCount next_column = (pos.column / tabstop + 1) * tabstop; if (next_column > target_column and pos.byte != current.byte) // the target column was in the tab break; pos.column = next_column; ++pos.byte; last_word_boundary = last_WORD_boundary = pos; } else { const char* it = &content[pos.byte]; const Codepoint cp = utf8::read_codepoint(it, content.end()); const ColumnCount width = codepoint_width(cp); if (pos.column + width > target_column and pos.byte != current.byte) // the target column was in the char { update_boundaries(cp); break; } pos.column += width; pos.byte = (int)(it - content.begin()); update_boundaries(cp); } } if (m_word_wrap and pos.byte < content.length()) { auto find_split_pos = [&](SplitPos start_pos, auto is_word) -> Optional { if (start_pos.byte == 0) return {}; const char* it = &content[pos.byte]; // split at current position if is a word boundary if (not is_word(utf8::codepoint(it, content.end()), {'_'})) return pos; // split at last word boundary if the word is shorter than our wrapping width ColumnCount word_length = pos.column - start_pos.column; while (it != content.end() and word_length <= (wrap_column - prefix_len)) { const Codepoint cp = utf8::read_codepoint(it, content.end()); if (not is_word(cp, {'_'})) return start_pos; word_length += codepoint_width(cp); } return {}; }; if (auto split = find_split_pos(last_WORD_boundary, is_word)) return *split; if (auto split = find_split_pos(last_word_boundary, is_word)) return *split; } return pos; } static ColumnCount line_indent(const Buffer& buffer, int tabstop, LineCount line) { StringView l = buffer[line]; auto col = 0_byte; while (is_horizontal_blank(l[col])) ++col; return get_column(buffer, tabstop, {line, col}); } static std::unique_ptr create(HighlighterParameters params, Highlighter*) { ParametersParser parser(params, wrap_desc.params); ColumnCount max_width = parser.get_switch("width").map(str_to_int) .value_or(std::numeric_limits::max()); return std::make_unique(max_width, (bool)parser.get_switch("word"), (bool)parser.get_switch("indent"), parser.get_switch("marker").value_or("").str()); } static ColumnCount zero_if_greater(ColumnCount val, ColumnCount max) { return val < max ? val : 0; }; const bool m_word_wrap; const bool m_preserve_indent; const ColumnCount m_max_width; const String m_marker; }; constexpr StringView WrapHighlighter::ms_id; struct TabulationHighlighter : Highlighter { TabulationHighlighter() : Highlighter{HighlightPass::Move} {} void do_highlight(HighlightContext context, DisplayBuffer& display_buffer, BufferRange) override { const ColumnCount tabstop = context.context.options()["tabstop"].get(); const auto& buffer = context.context.buffer(); for (auto& line : display_buffer.lines()) { ColumnCount column = 0; const char* line_data = nullptr; const char* pos = nullptr; for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it) { if (atom_it->type() != DisplayAtom::Range) continue; auto begin = atom_it->begin(); if (auto* atom_line_data = buffer[begin.line].data(); atom_line_data != line_data) { pos = line_data = atom_line_data; column = 0; } kak_assert(pos != nullptr and pos <= line_data + begin.column); for (auto end = line_data + atom_it->end().column; pos != end; ++pos) { const char* next_tab = std::find(pos, end, '\t'); if (next_tab == end) { pos = end; break; } while (pos != next_tab) column += codepoint_width(utf8::read_codepoint(pos, next_tab)); const ColumnCount tabwidth = tabstop - (column % tabstop); column += tabwidth; if (pos >= line_data + atom_it->begin().column) { if (pos != line_data + atom_it->begin().column) atom_it = ++line.split(atom_it, {begin.line, ByteCount(pos - line_data)}); if (pos + 1 != end) atom_it = line.split(atom_it, {begin.line, ByteCount(pos + 1 - line_data)}); atom_it->replace(String{' ', tabwidth}); ++atom_it; } } if (atom_it == line.end()) break; } } } void do_compute_display_setup(HighlightContext context, DisplaySetup& setup) const override { auto& buffer = context.context.buffer(); // Ensure that a cursor on a tab character makes the full tab character visible auto cursor = context.context.selections().main().cursor(); if (buffer.byte_at(cursor) != '\t') return; const ColumnCount tabstop = context.context.options()["tabstop"].get(); const ColumnCount column = get_column(buffer, tabstop, cursor); const ColumnCount width = tabstop - (column % tabstop); const ColumnCount win_end = setup.first_column + context.context.window().dimensions().column - setup.widget_columns; const ColumnCount offset = std::max(column + width - win_end, 0_col); setup.first_column += offset; setup.cursor_pos.column -= offset; } }; const HighlighterDesc show_whitespace_desc = { "Parameters: [-tab ] [-tabpad ] [-lf ] [-spc ] [-nbsp ]\n" "Display whitespaces using symbols", { { { "tab", { ArgCompleter{}, "replace tabulations with the given character" } }, { "tabpad", { ArgCompleter{}, "append as many of the given character as is necessary to honor `tabstop`" } }, { "spc", { ArgCompleter{}, "replace spaces with the given character" } }, { "lf", { ArgCompleter{}, "replace line feeds with the given character" } }, { "nbsp", { ArgCompleter{}, "replace non-breakable spaces with the given character" } } }, ParameterDesc::Flags::None, 0, 0 } }; struct ShowWhitespacesHighlighter : Highlighter { ShowWhitespacesHighlighter(String tab, String tabpad, String spc, String lf, String nbsp) : Highlighter{HighlightPass::Move}, m_tab{std::move(tab)}, m_tabpad{std::move(tabpad)}, m_spc{std::move(spc)}, m_lf{std::move(lf)}, m_nbsp{std::move(nbsp)} {} static std::unique_ptr create(HighlighterParameters params, Highlighter*) { ParametersParser parser(params, show_whitespace_desc.params); 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 parameter", param)}; return value.str(); }; return std::make_unique( get_param("tab", "→"), get_param("tabpad", " "), get_param("spc", "·"), get_param("lf", "¬"), get_param("nbsp", "⍽")); } private: void do_highlight(HighlightContext context, DisplayBuffer& display_buffer, BufferRange) override { const int tabstop = context.context.options()["tabstop"].get(); auto whitespaceface = context.context.faces()["Whitespace"]; const auto& buffer = context.context.buffer(); for (auto& line : display_buffer.lines()) { for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it) { if (atom_it->type() != DisplayAtom::Range) continue; auto begin = get_iterator(buffer, atom_it->begin()); auto end = get_iterator(buffer, atom_it->end()); for (BufferIterator it = begin; it != end; ) { auto coord = it.coord(); Codepoint cp = utf8::read_codepoint(it, end); if (cp == '\t' or cp == ' ' or cp == '\n' or cp == 0xA0 or cp == 0x202F) { if (coord != begin.coord()) atom_it = ++line.split(atom_it, coord); if (it != end) atom_it = line.split(atom_it, it.coord()); if (cp == '\t') { const ColumnCount column = get_column(buffer, tabstop, coord); const ColumnCount count = tabstop - (column % tabstop); atom_it->replace(m_tab + String(m_tabpad[(CharCount)0], count - m_tab.column_length())); } else if (cp == ' ') atom_it->replace(m_spc); else if (cp == '\n') atom_it->replace(m_lf); else if (cp == 0xA0 or cp == 0x202F) atom_it->replace(m_nbsp); atom_it->face = merge_faces(atom_it->face, whitespaceface); break; } } } } } const String m_tab, m_tabpad, m_spc, m_lf, m_nbsp; }; const HighlighterDesc line_numbers_desc = { "Parameters: [-relative] [-hlcursor] [-separators ] [-min-digits ]\n" "Display line numbers", { { { "relative", { {}, "show line numbers relative to the main cursor line" } }, { "separator", { ArgCompleter{}, "string to separate the line numbers column from the rest of the buffer (default '|')" } }, { "cursor-separator", { ArgCompleter{}, "identical to -separator but applies only to the line of the cursor (default is the same value passed to -separator)" } }, { "min-digits", { ArgCompleter{}, "use at least the given number of columns to display line numbers (default 2)" } }, { "hlcursor", { {}, "highlight the cursor line with a separate face" } } }, ParameterDesc::Flags::None, 0, 0 } }; struct LineNumbersHighlighter : Highlighter { LineNumbersHighlighter(bool relative, bool hl_cursor_line, String separator, String cursor_separator, int min_digits) : Highlighter{HighlightPass::Move}, m_relative{relative}, m_hl_cursor_line{hl_cursor_line}, m_separator{std::move(separator)}, m_cursor_separator{std::move(cursor_separator)}, m_min_digits{min_digits} {} static std::unique_ptr create(HighlighterParameters params, Highlighter*) { ParametersParser parser(params, line_numbers_desc.params); StringView separator = parser.get_switch("separator").value_or("│"); StringView cursor_separator = parser.get_switch("cursor-separator").value_or(separator); if (separator.length() > 10) throw runtime_error("separator length is limited to 10 bytes"); if (cursor_separator.column_length() != separator.column_length()) throw runtime_error("separator for active line should have the same length as 'separator'"); int min_digits = parser.get_switch("min-digits").map(str_to_int).value_or(2); if (min_digits < 0) throw runtime_error("min digits must be positive"); if (min_digits > 10) throw runtime_error("min digits is limited to 10"); return std::make_unique((bool)parser.get_switch("relative"), (bool)parser.get_switch("hlcursor"), separator.str(), cursor_separator.str(), min_digits); } private: static constexpr StringView ms_id = "line-numbers"; void do_highlight(HighlightContext context, DisplayBuffer& display_buffer, BufferRange) override { if (contains(context.disabled_ids, ms_id)) return; const auto& faces = context.context.faces(); const Face face = faces["LineNumbers"]; const Face face_wrapped = faces["LineNumbersWrapped"]; const Face face_absolute = faces["LineNumberCursor"]; int digit_count = compute_digit_count(context.context); char format[16]; format_to(format, "%{}d", digit_count); const int main_line = (int)context.context.selections().main().cursor().line + 1; int last_line = -1; 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)); const auto atom_face = last_line == current_line ? face_wrapped : ((m_hl_cursor_line and is_cursor_line) ? face_absolute : face); const auto& separator = is_cursor_line && last_line != current_line ? m_cursor_separator : m_separator; line.insert(line.begin(), {buffer, atom_face}); line.insert(line.begin() + 1, {separator, face}); last_line = current_line; } } void do_compute_display_setup(HighlightContext context, DisplaySetup& setup) const override { if (contains(context.disabled_ids, ms_id)) return; ColumnCount width = compute_digit_count(context.context) + m_separator.column_length(); setup.widget_columns += width; } void fill_unique_ids(Vector& unique_ids) const override { unique_ids.push_back(ms_id); } int compute_digit_count(const Context& context) const { int digit_count = 0; LineCount last_line = context.buffer().line_count(); for (LineCount c = last_line; c > 0; c /= 10) ++digit_count; return std::max(digit_count, m_min_digits); } const bool m_relative; const bool m_hl_cursor_line; const String m_separator; const String m_cursor_separator; const int m_min_digits; }; constexpr StringView LineNumbersHighlighter::ms_id; const HighlighterDesc show_matching_desc = { "Apply the MatchingChar face to the char matching the one under the cursor", { { { "previous", {} } }, ParameterDesc::Flags::SwitchesOnlyAtStart, 0, 0 } }; template void show_matching_char(HighlightContext context, DisplayBuffer& display_buffer, BufferRange) { const Face face = context.context.faces()["MatchingChar"]; const auto& matching_pairs = context.context.options()["matching_pairs"].get>(); const auto range = display_buffer.range(); const auto& buffer = context.context.buffer(); for (auto& sel : context.context.selections()) { auto pos = sel.cursor(); if (pos < range.begin or pos >= range.end) continue; Utf8Iterator it{buffer.iterator_at(pos), buffer}; auto match = find(matching_pairs, *it); bool matching_prev = match == matching_pairs.end() and match_prev; if (matching_prev) match = find(matching_pairs, *--it); if (match == matching_pairs.end()) continue; if (matching_prev) highlight_range(display_buffer, it.base().coord(), (it+1).base().coord(), false, apply_face(face)); int level = 0; if (((match - matching_pairs.begin()) % 2) == 0) { const Codepoint opening = *match; const Codepoint closing = *(match+1); while (it.base().coord() <= range.end) { if (*it == opening) ++level; else if (*it == closing and --level == 0) { highlight_range(display_buffer, it.base().coord(), (it+1).base().coord(), false, apply_face(face)); break; } ++it; } } else if (pos > range.begin) { const Codepoint opening = *(match-1); const Codepoint closing = *match; while (true) { if (*it == closing) ++level; else if (*it == opening and --level == 0) { highlight_range(display_buffer, it.base().coord(), (it+1).base().coord(), false, apply_face(face)); break; } if (it.base().coord() <= range.begin) break; --it; } } } } std::unique_ptr create_matching_char_highlighter(HighlighterParameters params, Highlighter*) { ParametersParser parser{params, show_matching_desc.params}; return make_highlighter(parser.get_switch("previous") ? show_matching_char : show_matching_char); } void highlight_selections(HighlightContext context, DisplayBuffer& display_buffer, BufferRange) { const auto& buffer = context.context.buffer(); const auto& faces = context.context.faces(); const Face sel_faces[6] = { faces["PrimarySelection"], faces["SecondarySelection"], faces["PrimaryCursor"], faces["SecondaryCursor"], faces["PrimaryCursorEol"], faces["SecondaryCursorEol"], }; const auto& selections = context.context.selections(); for (size_t i = 0; i < selections.size(); ++i) { auto& sel = selections[i]; const bool forward = sel.anchor() <= sel.cursor(); BufferCoord begin = forward ? sel.anchor() : buffer.char_next(sel.cursor()); BufferCoord end = forward ? (BufferCoord)sel.cursor() : buffer.char_next(sel.anchor()); const bool primary = (i == selections.main_index()); highlight_range(display_buffer, begin, end, false, apply_face(sel_faces[primary ? 0 : 1])); } for (size_t i = 0; i < selections.size(); ++i) { auto& sel = selections[i]; const BufferCoord coord = sel.cursor(); const bool primary = (i == selections.main_index()); const bool eol = buffer[coord.line].length() - 1 == coord.column; highlight_range(display_buffer, coord, buffer.char_next(coord), false, apply_face(sel_faces[2 + (eol ? 2 : 0) + (primary ? 0 : 1)])); } } void expand_unprintable(HighlightContext context, DisplayBuffer& display_buffer, BufferRange) { const auto& buffer = context.context.buffer(); auto error = context.context.faces()[FaceSpec{{}, "Error"}]; for (auto& line : display_buffer.lines()) { for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it) { if (atom_it->type() != DisplayAtom::Range) continue; auto begin = atom_it->begin(); auto line_data = buffer[begin.line].data(); for (auto it = line_data + begin.column, end = line_data + atom_it->end().column; it < end;) { auto next = it; Codepoint cp = utf8::read_codepoint(next, end); if (cp != '\n' and (cp < ' ' or cp > '~') and not iswprint((wchar_t)cp)) { if (ByteCount pos(it - line_data); pos != begin.column) atom_it = ++line.split(atom_it, {begin.line, pos}); if (ByteCount pos(next - line_data); pos < atom_it->end().column) atom_it = line.split(atom_it, {begin.line, pos}); atom_it->replace("�"); atom_it->face = error; break; } it = next; } } } } static void update_line_specs_ifn(const Buffer& buffer, LineAndSpecList& line_flags) { if (line_flags.prefix == buffer.timestamp()) return; auto& lines = line_flags.list; 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(); } void option_update(LineAndSpecList& opt, const Context& context) { update_line_specs_ifn(context.buffer(), opt); } void option_list_postprocess(Vector& opt) { std::sort(opt.begin(), opt.end(), [](auto& lhs, auto& rhs) { return std::get<0>(lhs) < std::get<0>(rhs); }); } const HighlighterDesc flag_lines_desc = { "Parameters: