From 303d87978556b3548ca4bab98f5daba7f804e4b8 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sun, 31 Mar 2024 21:38:51 +1100 Subject: Support exposing some env vars as part of the mode information This should implement what #5131 proposed in a different way. Closes #5131 --- src/input_handler.hh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/input_handler.hh') diff --git a/src/input_handler.hh b/src/input_handler.hh index eeb42464..1d1404d4 100644 --- a/src/input_handler.hh +++ b/src/input_handler.hh @@ -4,6 +4,7 @@ #include "completion.hh" #include "constexpr_utils.hh" #include "context.hh" +#include "env_vars.hh" #include "face.hh" #include "normal.hh" #include "keys.hh" @@ -52,6 +53,12 @@ enum class InsertMode : unsigned OpenLineAbove }; +struct ModeInfo +{ + DisplayLine display_line; + EnvVarMap env_vars; +}; + class InputHandler : public SafeCountable { public: @@ -97,7 +104,7 @@ public: Context& context() { return m_context; } const Context& context() const { return m_context; } - DisplayLine mode_line() const; + ModeInfo mode_info() const; std::pair get_cursor_info() const; -- cgit v1.2.3