summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index ea6da4b0..ae6ac83b 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -9,12 +9,11 @@
#include "normal.hh"
#include "regex.hh"
#include "register_manager.hh"
+#include "unordered_map.hh"
#include "user_interface.hh"
#include "utf8.hh"
#include "window.hh"
-#include <unordered_map>
-
namespace Kakoune
{
@@ -736,10 +735,10 @@ private:
bool m_autoshowcompl;
Mode m_mode = Mode::Default;
- static std::unordered_map<String, std::vector<String>> ms_history;
+ static UnorderedMap<String, std::vector<String>> ms_history;
std::vector<String>::iterator m_history_it;
};
-std::unordered_map<String, std::vector<String>> Prompt::ms_history;
+UnorderedMap<String, std::vector<String>> Prompt::ms_history;
class NextKey : public InputMode
{