summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/selectors.hh7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/selectors.hh b/src/selectors.hh
index e3270716..41c7bc96 100644
--- a/src/selectors.hh
+++ b/src/selectors.hh
@@ -254,11 +254,8 @@ Selection find_next_match(const Buffer& buffer, const Selection& sel, const Rege
return {begin.coord(), end.coord(), std::move(captures)};
}
-void select_all_matches(SelectionList& selections,
- const Regex& regex);
-
-void split_selections(SelectionList& selections,
- const Regex& separator_regex);
+void select_all_matches(SelectionList& selections, const Regex& regex);
+void split_selections(SelectionList& selections, const Regex& separator_regex);
struct MatchingPair { Codepoint opening, closing; };
Selection select_surrounding(const Buffer& buffer, const Selection& selection,