kakoune/src/selectors.hh

76 lines
2.9 KiB
C++
Raw Normal View History

#ifndef selectors_hh_INCLUDED
#define selectors_hh_INCLUDED
#include "selection.hh"
#include "unicode.hh"
namespace Kakoune
{
2012-03-07 20:20:32 +01:00
template<bool punctuation_is_word>
2013-06-01 14:22:57 +02:00
Selection select_to_next_word(const Buffer& buffer,
const Selection& selection);
2012-03-07 20:20:32 +01:00
template<bool punctuation_is_word>
2013-06-01 14:22:57 +02:00
Selection select_to_next_word_end(const Buffer& buffer,
const Selection& selection);
2012-03-07 20:20:32 +01:00
template<bool punctuation_is_word>
2013-06-01 14:22:57 +02:00
Selection select_to_previous_word(const Buffer& buffer,
const Selection& selection);
2012-10-08 19:12:09 +02:00
2013-06-01 14:22:57 +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);
2013-06-01 14:22:57 +02:00
Selection select_to_eol(const Buffer& buffer, const Selection& selection);
Selection select_to_eol_reverse(const Buffer& buffer, const Selection& selection);
enum class ObjectFlags
{
ToBegin = 1,
ToEnd = 2,
Inner = 4
};
constexpr bool operator&(ObjectFlags lhs, ObjectFlags rhs)
{ return (bool)((int)lhs & (int) rhs); }
constexpr ObjectFlags operator|(ObjectFlags lhs, ObjectFlags rhs)
{ return (ObjectFlags)((int)lhs | (int) rhs); }
template<bool punctuation_is_word>
2013-06-01 14:22:57 +02:00
Selection select_whole_word(const Buffer& buffer, const Selection& selection,
ObjectFlags flags);
Selection select_whole_sentence(const Buffer& buffer, const Selection& selection,
ObjectFlags flags);
Selection select_whole_paragraph(const Buffer& buffer, const Selection& selection,
ObjectFlags flags);
2013-07-22 19:58:16 +02:00
Selection select_whole_indent(const Buffer& buffer, const Selection& selection,
ObjectFlags flags);
2013-06-01 14:22:57 +02:00
Selection select_whole_lines(const Buffer& buffer, const Selection& selection);
Selection select_whole_buffer(const Buffer& buffer, const Selection& selection);
Selection trim_partial_lines(const Buffer& buffer, const Selection& selection);
enum Direction { Forward, Backward };
template<Direction direction>
2013-06-01 14:22:57 +02:00
Selection select_next_match(const Buffer& buffer, const Selection& selection,
const Regex& regex);
2013-06-01 14:22:57 +02:00
SelectionList select_all_matches(const Buffer& buffer, const Selection& selection,
const Regex& regex);
2013-06-01 14:22:57 +02:00
SelectionList split_selection(const Buffer& buffer, const Selection& selection,
const Regex& separator_regex);
using CodepointPair = std::pair<Codepoint, Codepoint>;
2013-06-01 14:22:57 +02:00
Selection select_surrounding(const Buffer& buffer, const Selection& selection,
2013-07-26 00:44:00 +02:00
CodepointPair matching, ObjectFlags flags);
}
#endif // selectors_hh_INCLUDED