summaryrefslogtreecommitdiff
path: root/src/editor.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2012-03-08 21:23:29 +0000
committerMaxime Coste <frrrwww@gmail.com>2012-03-08 21:23:29 +0000
commitdf0f7b46893b9c87d33df246b7012d4058a79eab (patch)
tree7e8f8c6db3dfebe1fc4d1a36ee424a58f843f1bf /src/editor.hh
parentf2fd2b125aceb992548c817f9563805401a4436a (diff)
rename BufferString to String
Diffstat (limited to 'src/editor.hh')
-rw-r--r--src/editor.hh3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/editor.hh b/src/editor.hh
index f019d053..70ea9d64 100644
--- a/src/editor.hh
+++ b/src/editor.hh
@@ -19,7 +19,6 @@ class Register;
class Editor
{
public:
- typedef BufferString String;
typedef std::function<SelectionAndCaptures (const Selection&)> Selector;
typedef std::function<SelectionAndCapturesList (const Selection&)> MultiSelector;
@@ -110,7 +109,7 @@ public:
IncrementalInserter(Editor& editor, Mode mode = Mode::Insert);
~IncrementalInserter();
- void insert(const Editor::String& string);
+ void insert(const String& string);
void insert(const Register& reg);
void erase();
void move_cursors(const BufferCoord& offset);