Jonas Chevalier
Jonas Chevalier
I'd rather have tmux fix their behavior than add more complexity to direnv. They should either inherit the environment and then pass it to the inner-shells as is. Or, wipe...
@johhansantana `direnv command not found` means that direnv isn't found in the $PATH. Try putting the executable in one of the folder listed when you run `echo $PATH`.
nice! I'm surprised that it's working at all
Thanks @markwest1! I think that I have seen that particular issue already. The issue is with go's builtins "path" package that has some heuristics hard-coded for Windows. When the compiler...
How does your use_ruby look like ? I think that chruby sets environment variables to select the ruby version so direnv should properly revert those changes when going out of...
Hey nyarly, I think you also need to source that chruby.sh file at the start of the use_ruby function. direnv starts a bash sub-shell to evaluate the .envrc and the...
Hey @sknop, I think you can achieve what you want by changing the PS1 no ?
not tested but something like that: ``` sh in_direnv() { if [ -n "$DIRENV_DIR" ]; then echo -n -e "\033];In DirEnv\007" else echo -n -e "\033];Out of DirEnv\007" fi }...
Just fixed the script, it's working now
Hi @mattford63, what would happen if you had two terminals that `cd` into the same customer folder? My main issue with implementing the unload hook is that it supposes some...