summaryrefslogtreecommitdiff
path: root/src/client.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.hh')
-rw-r--r--src/client.hh3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client.hh b/src/client.hh
index d0a64bb3..9601feb5 100644
--- a/src/client.hh
+++ b/src/client.hh
@@ -25,7 +25,7 @@ public:
Client();
~Client();
- void insert(Editor& editor, InsertMode mode);
+ void insert(Context& context, InsertMode mode);
void repeat_last_insert(Context& context);
void prompt(const String& prompt, Completer completer,
@@ -41,7 +41,6 @@ public:
private:
friend class ClientMode;
std::unique_ptr<ClientMode> m_mode;
- std::pair<InsertMode, std::vector<Key>> m_last_insert;
};
struct prompt_aborted {};