From 779bb1654d20af6139f17bdaf9a38bcb75d20965 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Thu, 8 Nov 2012 04:39:28 +0100 Subject: EX command --- parser.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'parser.h') diff --git a/parser.h b/parser.h index 2798469..edcece7 100644 --- a/parser.h +++ b/parser.h @@ -76,6 +76,14 @@ private: State *custom(gchar chr); }; +class StateECommand : public State { +public: + StateECommand(); + +private: + State *custom(gchar chr); +}; + class StateInsert : public StateExpectString { private: void initial(void); @@ -91,6 +99,7 @@ extern struct States { StateStart start; StateLabel label; StateControl control; + StateECommand ecommand; StateInsert insert; } states; -- cgit v1.2.3