summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-04-12 14:28:13 +0200
committerMaxime Coste <frrrwww@gmail.com>2013-04-12 14:28:13 +0200
commit5653af15ed9e8b412523ad860a3df2ac3d9739c4 (patch)
tree7e4a9b3d60f530de40b7dfa25aaddbce54fd2de1 /src/input_handler.cc
parentdbffcb226b95aad0d7a56a7e4982747d5bb58241 (diff)
move normal mode implementation to normal.{cc,hh}
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index e3ca427d..e19dc8e6 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -4,6 +4,7 @@
#include "context.hh"
#include "editor.hh"
#include "event_manager.hh"
+#include "normal.hh"
#include "register_manager.hh"
#include "user_interface.hh"
#include "utf8.hh"
@@ -14,8 +15,6 @@
namespace Kakoune
{
-extern std::unordered_map<Key, std::function<void (Context& context)>> keymap;
-
class InputMode
{
public: