summaryrefslogtreecommitdiff
path: root/src/context.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-07-13 13:43:52 +0100
committerMaxime Coste <frrrwww@gmail.com>2015-07-13 13:43:52 +0100
commit905af05c61be05b2d5d776529fdc8cb161897e50 (patch)
tree6da4aa8a7d5c1d8e6f3c7252c7d869937c2bff91 /src/context.cc
parentae3098f5b0517f6d29fd4eba73804b5c27bf035e (diff)
Move Context scope access helpers as inline methods
Diffstat (limited to 'src/context.cc')
-rw-r--r--src/context.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/context.cc b/src/context.cc
index df8210f8..af566113 100644
--- a/src/context.cc
+++ b/src/context.cc
@@ -65,26 +65,6 @@ Scope& Context::scope() const
return GlobalScope::instance();
}
-OptionManager& Context::options() const
-{
- return scope().options();
-}
-
-HookManager& Context::hooks() const
-{
- return scope().hooks();
-}
-
-KeymapManager& Context::keymaps() const
-{
- return scope().keymaps();
-}
-
-AliasRegistry& Context::aliases() const
-{
- return scope().aliases();
-}
-
void Context::set_client(Client& client)
{
kak_assert(not has_client());