diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2014-04-07 21:25:44 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2014-04-07 23:47:51 +0100 |
| commit | 203a7732f5fafb5f9b7e8564bd3bd4587e168134 (patch) | |
| tree | e136448924786ac638b8ad91304b6cdf6e5eb035 /src/shell_manager.hh | |
| parent | 33de42610dc08dd7bfd65f49a70ec68a478dee2d (diff) | |
Add support for querying client environement variables
At connection, a remote client sends all its environement to the
server, which then provides access to client env through
kak_client_env_VAR_NAME variables in the shell.
Diffstat (limited to 'src/shell_manager.hh')
| -rw-r--r-- | src/shell_manager.hh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/shell_manager.hh b/src/shell_manager.hh index 0774fdf2..a6fe38fd 100644 --- a/src/shell_manager.hh +++ b/src/shell_manager.hh @@ -3,15 +3,13 @@ #include "string.hh" #include "utils.hh" - -#include <unordered_map> +#include "env_vars.hh" namespace Kakoune { class Context; using EnvVarRetriever = std::function<String (const String& name, const Context&)>; -using EnvVarMap = std::unordered_map<String, String>; class ShellManager : public Singleton<ShellManager> { |
