From 1d852082b54112a019fbab7760cfce4c87fc1817 Mon Sep 17 00:00:00 2001 From: anki-code Date: Fri, 13 Mar 2020 19:00:25 +0300 Subject: [PATCH] 0.5.5 --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index ccad382..687b35b 100644 --- a/README.md +++ b/README.md @@ -18,3 +18,16 @@ Real life example of creating xxh-shell and xxh-plugins you could find in [xxh-s ## Plugins To support plugins to your xxh-shell you should add execution the `pluginrc` files. Examples: [.zshrc](https://github.com/xxh/xxh-shell-zsh/blob/master/.zshrc), [xonshrc](https://github.com/xxh/xxh-shell-xonsh-appimage/blob/master/xonshrc.xsh). + +## Seamless mode +The xxh has seamless environment mode which allows to pass variable from your current shell session +to the xxh host session. For example if you have `XONSH_COLOR_STYLE` variable with your shell color theme you shouldn't +worry about passing it manually. Example for xonsh: +``` +home> print($XONSH_COLOR_STYLE) +paraiso-dark +home> source xxh.xsh myhost +myhost> print($XONSH_COLOR_STYLE) +paraiso-dark +``` +This very useful when you want to use the same tools on your local and remote host.