2011-09-21 16:37:09 +02:00
|
|
|
#ifndef selectors_hh_INCLUDED
|
|
|
|
#define selectors_hh_INCLUDED
|
|
|
|
|
|
|
|
#include "window.hh"
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
Selection select_to_next_word(const BufferIterator& cursor);
|
|
|
|
Selection select_to_next_word_end(const BufferIterator& cursor);
|
|
|
|
Selection select_to_previous_word(const BufferIterator& cursor);
|
|
|
|
Selection select_line(const BufferIterator& cursor);
|
|
|
|
Selection move_select(Window& window, const BufferIterator& cursor, const WindowCoord& offset);
|
2011-09-21 21:09:49 +02:00
|
|
|
Selection select_matching(const BufferIterator& cursor);
|
2011-09-27 16:27:48 +02:00
|
|
|
Selection select_to(const BufferIterator& cursor, char c, int count, bool inclusive);
|
2011-09-21 16:37:09 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // selectors_hh_INCLUDED
|