summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/context.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/context.hh b/src/context.hh
index 3cfb979c..348b2f9e 100644
--- a/src/context.hh
+++ b/src/context.hh
@@ -42,10 +42,15 @@ struct Context
return GlobalOptionManager::instance();
}
+ int numeric_param() const { return m_numeric_param; }
+ void numeric_param(int param) { m_numeric_param = param; }
+
+
public:
safe_ptr<Window> m_window;
safe_ptr<Buffer> m_buffer;
+ int m_numeric_param = 0;
};
}