diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2013-10-25 00:01:17 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2013-10-25 00:30:46 +0100 |
| commit | 2c09da50be80dbaf484682689bfd1a685d601573 (patch) | |
| tree | 6fe5efc4ef6ff1c379c388de48fdc0dd96b79981 /src/window.hh | |
| parent | 77ac777526a6a05c2d2027e30c0bbcf9720ad5b7 (diff) | |
Add key mapping support
Diffstat (limited to 'src/window.hh')
| -rw-r--r-- | src/window.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/window.hh b/src/window.hh index 534d18b3..49bbe39e 100644 --- a/src/window.hh +++ b/src/window.hh @@ -8,6 +8,7 @@ #include "highlighter.hh" #include "hook_manager.hh" #include "option_manager.hh" +#include "keymap_manager.hh" namespace Kakoune { @@ -46,6 +47,8 @@ public: const OptionManager& options() const { return m_options; } HookManager& hooks() { return m_hooks; } const HookManager& hooks() const { return m_hooks; } + KeymapManager& keymaps() { return m_keymaps; } + const KeymapManager& keymaps() const { return m_keymaps; } size_t timestamp() const { return m_timestamp; } void forget_timestamp() { m_timestamp = -1; } @@ -65,6 +68,7 @@ private: HookManager m_hooks; OptionManager m_options; + KeymapManager m_keymaps; HighlighterGroup m_highlighters; HighlighterGroup m_builtin_highlighters; |
