You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to add listing to the app?
I'm using it every day and have no knowledge of C/C++.
There are times I forget saved name of the namespace and need to restore it somehow...
Thanks
The text was updated successfully, but these errors were encountered:
seahorse helps, but not much, as it doesn't show the names of saved environments in the list, only in details of each item, which is quite inconvenient once I have multiple namespaces with the same variable names.
It would be great to have some sort of list of environment names stored somewhere. For the time being, I'm manually maintaining the list myself in a config file that I reference in a function/alias.
Code snippet of a bash function
chooseEnv() {
# Manually adding envs here as I `envchain --set` them because envchain
# doesn't have a `--list` or `ls` command.
# See: https://github.com/sorah/envchain/issues/17
select env_name in $(< ~/.config/envchain/list.env)
do
if [[ $env_name == "" ]]
then
echo "Please choose from the available environments!"
continue
fi
envchain ${env_name} zsh
break
done
}
alias whichenv=chooseEnv
Is it possible to add listing to the app?
I'm using it every day and have no knowledge of C/C++.
There are times I forget saved name of the namespace and need to restore it somehow...
Thanks
The text was updated successfully, but these errors were encountered: