1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-28 01:00:28 +03:00

Window: move highlighters after options so that they can reference it

This commit is contained in:
Maxime Coste 2013-04-02 13:58:04 +02:00
parent b9f5dbd3b5
commit e5215e7138

View File

@ -58,12 +58,12 @@ private:
DisplayCoord m_dimensions;
DisplayBuffer m_display_buffer;
HighlighterGroup m_highlighters;
HighlighterGroup m_builtin_highlighters;
HookManager m_hooks;
OptionManager m_options;
HighlighterGroup m_highlighters;
HighlighterGroup m_builtin_highlighters;
size_t m_timestamp = -1;
};