2011-09-21 16:37:09 +02:00
|
|
|
#include "selectors.hh"
|
|
|
|
|
2011-09-21 21:09:49 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
2011-09-21 16:37:09 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2011-09-21 21:09:49 +02:00
|
|
|
static bool is_eol(char c)
|
|
|
|
{
|
|
|
|
return c == '\n';
|
|
|
|
}
|
|
|
|
|
2011-09-21 16:37:09 +02:00
|
|
|
static bool is_blank(char c)
|
|
|
|
{
|
|
|
|
return c == ' ' or c == '\t' or c == '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool is_word(char c)
|
|
|
|
{
|
|
|
|
if (c >= '0' and c <= '9')
|
|
|
|
return true;
|
|
|
|
if (c >= 'a' and c <= 'z')
|
|
|
|
return true;
|
|
|
|
if (c >= 'A' and c <= 'Z')
|
|
|
|
return true;
|
2011-09-22 16:00:31 +02:00
|
|
|
if (c == '_')
|
|
|
|
return true;
|
2011-09-21 16:37:09 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-22 16:00:31 +02:00
|
|
|
static bool is_punctuation(char c)
|
|
|
|
{
|
|
|
|
return not (is_word(c) or is_blank(c));
|
|
|
|
}
|
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
enum class CharCategories
|
|
|
|
{
|
|
|
|
Blank,
|
|
|
|
Word,
|
|
|
|
Punctuation,
|
|
|
|
};
|
|
|
|
|
|
|
|
static CharCategories categorize(char c)
|
|
|
|
{
|
|
|
|
if (is_word(c))
|
|
|
|
return CharCategories::Word;
|
|
|
|
if (is_blank(c))
|
|
|
|
return CharCategories::Blank;
|
|
|
|
return CharCategories::Punctuation;
|
|
|
|
}
|
|
|
|
|
2011-09-22 16:00:31 +02:00
|
|
|
template<typename T>
|
|
|
|
void skip_while(BufferIterator& it, T condition)
|
|
|
|
{
|
|
|
|
while (not it.is_end() and condition(*it))
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void skip_while_reverse(BufferIterator& it, T condition)
|
|
|
|
{
|
|
|
|
while (not it.is_begin() and condition(*it))
|
|
|
|
--it;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-21 16:37:09 +02:00
|
|
|
Selection select_to_next_word(const BufferIterator& cursor)
|
|
|
|
{
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator begin = cursor;
|
|
|
|
BufferIterator end = cursor+1;
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
if (categorize(*begin) != categorize(*end))
|
|
|
|
{
|
|
|
|
++begin;
|
|
|
|
++end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_punctuation(*begin))
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while(end, is_punctuation);
|
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
if (is_word(*begin))
|
|
|
|
skip_while(end, is_word);
|
|
|
|
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while(end, is_blank);
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
return Selection(begin, end-1);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Selection select_to_next_word_end(const BufferIterator& cursor)
|
|
|
|
{
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator begin = cursor;
|
|
|
|
BufferIterator end = cursor+1;
|
|
|
|
|
|
|
|
if (categorize(*begin) != categorize(*end))
|
|
|
|
++begin;
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while(end, is_blank);
|
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
if (is_punctuation(*end))
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while(end, is_punctuation);
|
2011-09-23 11:17:19 +02:00
|
|
|
else if (is_word(*end))
|
|
|
|
skip_while(end, is_word);
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
return Selection(begin, end-1);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Selection select_to_previous_word(const BufferIterator& cursor)
|
|
|
|
{
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator begin = cursor;
|
|
|
|
BufferIterator end = cursor-1;
|
|
|
|
|
|
|
|
if (categorize(*begin) != categorize(*end))
|
|
|
|
--begin;
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while_reverse(end, is_blank);
|
2011-09-23 11:17:19 +02:00
|
|
|
|
|
|
|
if (is_punctuation(*end))
|
2011-09-22 16:00:31 +02:00
|
|
|
skip_while_reverse(end, is_punctuation);
|
2011-09-23 11:17:19 +02:00
|
|
|
else if (is_word(*end))
|
|
|
|
skip_while_reverse(end, is_word);
|
2011-09-21 16:37:09 +02:00
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
return Selection(begin, end+1);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Selection select_line(const BufferIterator& cursor)
|
|
|
|
{
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator first = cursor;
|
|
|
|
while (not first.is_begin() and *(first - 1) != '\n')
|
|
|
|
--first;
|
|
|
|
|
|
|
|
BufferIterator last = cursor;
|
|
|
|
while (not (last + 1).is_end() and *last != '\n')
|
|
|
|
++last;
|
|
|
|
return Selection(first, last);
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Selection move_select(Window& window, const BufferIterator& cursor, const WindowCoord& offset)
|
|
|
|
{
|
|
|
|
WindowCoord cursor_pos = window.line_and_column_at(cursor);
|
|
|
|
WindowCoord new_pos = cursor_pos + offset;
|
|
|
|
|
|
|
|
return Selection(cursor, window.iterator_at(new_pos));
|
|
|
|
}
|
|
|
|
|
2011-09-21 21:09:49 +02:00
|
|
|
Selection select_matching(const BufferIterator& cursor)
|
|
|
|
{
|
|
|
|
std::vector<char> matching_pairs = { '(', ')', '{', '}', '[', ']', '<', '>' };
|
|
|
|
BufferIterator it = cursor;
|
|
|
|
std::vector<char>::iterator match = matching_pairs.end();
|
|
|
|
while (not is_eol(*it))
|
|
|
|
{
|
|
|
|
match = std::find(matching_pairs.begin(), matching_pairs.end(), *it);
|
|
|
|
if (match != matching_pairs.end())
|
|
|
|
break;
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
if (match == matching_pairs.end())
|
|
|
|
return Selection(cursor, cursor);
|
|
|
|
|
|
|
|
BufferIterator begin = it;
|
|
|
|
|
|
|
|
if (((match - matching_pairs.begin()) % 2) == 0)
|
|
|
|
{
|
|
|
|
int level = 0;
|
|
|
|
const char opening = *match;
|
|
|
|
const char closing = *(match+1);
|
|
|
|
while (not it.is_end())
|
|
|
|
{
|
|
|
|
if (*it == opening)
|
|
|
|
++level;
|
|
|
|
else if (*it == closing and --level == 0)
|
2011-09-23 11:17:19 +02:00
|
|
|
return Selection(begin, it);
|
2011-09-21 21:09:49 +02:00
|
|
|
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int level = 0;
|
|
|
|
const char opening = *(match-1);
|
|
|
|
const char closing = *match;
|
|
|
|
while (not it.is_begin())
|
|
|
|
{
|
|
|
|
if (*it == closing)
|
|
|
|
++level;
|
|
|
|
else if (*it == opening and --level == 0)
|
2011-09-23 11:17:19 +02:00
|
|
|
return Selection(begin, it);
|
2011-09-21 21:09:49 +02:00
|
|
|
--it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Selection(cursor, cursor);
|
|
|
|
}
|
|
|
|
|
2011-09-23 16:06:10 +02:00
|
|
|
Selection select_to(const BufferIterator& cursor, char c, bool inclusive)
|
2011-09-22 16:35:28 +02:00
|
|
|
{
|
|
|
|
BufferIterator end = cursor + 1;
|
|
|
|
skip_while(end, [c](char cur) { return not is_eol(cur) and cur != c; });
|
|
|
|
if (not is_eol(*end))
|
2011-09-23 16:06:10 +02:00
|
|
|
return Selection(cursor, inclusive ? end : end-1);
|
2011-09-22 16:35:28 +02:00
|
|
|
return Selection(cursor, cursor);
|
|
|
|
}
|
|
|
|
|
2011-09-21 16:37:09 +02:00
|
|
|
}
|