kakoune/src/selectors.hh

100 lines
3.5 KiB
C++
Raw Normal View History

#ifndef selectors_hh_INCLUDED
#define selectors_hh_INCLUDED
#include "flags.hh"
#include "selection.hh"
namespace Kakoune
{
class Regex;
template<typename Iterator> struct MatchResults;
inline Selection keep_direction(Selection res, const Selection& ref)
{
if ((res.cursor() < res.anchor()) != (ref.cursor() < ref.anchor()))
std::swap<BufferCoord>(res.cursor(), res.anchor());
return res;
}
template<WordType word_type>
Selection select_to_next_word(const Buffer& buffer, const Selection& selection);
2013-12-14 15:49:10 +01:00
template<WordType word_type>
Selection select_to_next_word_end(const Buffer& buffer, const Selection& selection);
2013-12-14 15:49:10 +01:00
template<WordType word_type>
Selection select_to_previous_word(const Buffer& buffer, const Selection& selection);
2012-10-08 19:12:09 +02:00
Selection select_line(const Buffer& buffer, const Selection& selection);
Selection select_matching(const Buffer& buffer, const Selection& selection);
2012-10-08 19:12:09 +02:00
2013-06-01 14:22:57 +02:00
Selection select_to(const Buffer& buffer, const Selection& selection,
Codepoint c, int count, bool inclusive);
2013-06-01 14:22:57 +02:00
Selection select_to_reverse(const Buffer& buffer, const Selection& selection,
Codepoint c, int count, bool inclusive);
template<bool only_move>
Selection select_to_line_end(const Buffer& buffer, const Selection& selection);
template<bool only_move>
Selection select_to_line_begin(const Buffer& buffer, const Selection& selection);
enum class ObjectFlags
{
ToBegin = 1,
ToEnd = 2,
Inner = 4
};
template<> struct WithBitOps<ObjectFlags> : std::true_type {};
template<WordType word_type>
2016-09-27 00:32:07 +02:00
Selection select_word(const Buffer& buffer, const Selection& selection,
int count, ObjectFlags flags);
2013-12-14 15:49:10 +01:00
2016-09-27 00:32:07 +02:00
Selection select_number(const Buffer& buffer, const Selection& selection,
int count, ObjectFlags flags);
2016-09-27 00:32:07 +02:00
Selection select_sentence(const Buffer& buffer, const Selection& selection,
int count, ObjectFlags flags);
2016-09-27 00:32:07 +02:00
Selection select_paragraph(const Buffer& buffer, const Selection& selection,
int count, ObjectFlags flags);
2016-09-27 00:32:07 +02:00
Selection select_whitespaces(const Buffer& buffer, const Selection& selection,
int count, ObjectFlags flags);
2014-06-11 15:00:45 +02:00
2016-09-27 00:32:07 +02:00
Selection select_indent(const Buffer& buffer, const Selection& selection,
int count, ObjectFlags flags);
2016-09-27 00:32:07 +02:00
Selection select_argument(const Buffer& buffer, const Selection& selection,
2015-06-25 15:44:43 +02:00
int level, ObjectFlags flags);
Selection select_lines(const Buffer& buffer, const Selection& selection);
2013-06-01 14:22:57 +02:00
Selection trim_partial_lines(const Buffer& buffer, const Selection& selection);
void select_buffer(SelectionList& selections);
enum Direction { Forward, Backward };
template<Direction direction>
bool find_match_in_buffer(const Buffer& buffer, const BufferIterator pos,
MatchResults<BufferIterator>& matches,
const Regex& ex, bool& wrapped);
2013-12-14 19:39:03 +01:00
template<Direction direction>
Selection find_next_match(const Buffer& buffer, const Selection& sel, const Regex& regex, bool& wrapped);
2013-12-14 19:39:03 +01:00
void select_all_matches(SelectionList& selections, const Regex& regex, int capture = 0);
void split_selections(SelectionList& selections, const Regex& separator_regex, int capture = 0);
2013-06-01 14:22:57 +02:00
Selection select_surrounding(const Buffer& buffer, const Selection& selection,
2016-01-27 09:28:25 +01:00
StringView opening, StringView closing, int level,
ObjectFlags flags);
}
#endif // selectors_hh_INCLUDED