2c8f3229c0
WORDs are the same as vim's ones, i.e. a group of contiguous non blank characters. They are bound as alt + word selector key.
26 lines
931 B
C++
26 lines
931 B
C++
#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_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 select_matching(const BufferIterator& cursor);
|
|
|
|
Selection select_to(const BufferIterator& cursor, char c, int count, bool inclusive);
|
|
Selection select_to_reverse(const BufferIterator& cursor, char c, int count, bool inclusive);
|
|
|
|
Selection select_to_eol(const BufferIterator& cursor);
|
|
Selection select_to_eol_reverse(const BufferIterator& cursor);
|
|
}
|
|
|
|
#endif // selectors_hh_INCLUDED
|