summaryrefslogtreecommitdiff
path: root/src/editor.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-12-14 14:08:26 +0000
committerMaxime Coste <frrrwww@gmail.com>2013-12-14 14:38:17 +0000
commit77590fe2e864fbde37067f341b6767c4f043dbed (patch)
treef0a95aae43195b7150d4a4eb8f8ddddfb7c11c33 /src/editor.hh
parentdad27fe1a0d3cf7382675e9fb2c64a0a4f874a59 (diff)
Move (keep|flip|remove|clear)_selections from editor method to free selectors
Diffstat (limited to 'src/editor.hh')
-rw-r--r--src/editor.hh4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/editor.hh b/src/editor.hh
index 16e4eb2b..f3076ad1 100644
--- a/src/editor.hh
+++ b/src/editor.hh
@@ -57,10 +57,6 @@ public:
SelectMode mode = SelectMode::Replace);
void move_selections(CharCount move,
SelectMode mode = SelectMode::Replace);
- void clear_selections();
- void flip_selections();
- void keep_selection(int index);
- void remove_selection(int index);
void select(BufferCoord c, SelectMode mode = SelectMode::Replace)
{ select(Selection{ buffer().clamp(c) }, mode); }
void select(const Selection& sel,