Jonas Chevalier

Results 831 comments of Jonas Chevalier

I had a look at the list and https://github.com/mkideal/cli looks pretty good. There is so much choice, I am sure other options would probably be fine as well.

Hi @rbutola, yes "direnv hook" is only intended for the interactive shell. For non-interactive bash use `eval "$(direnv export bash)"` (and potentially `direnv allow .` before that if you trust...

Yes that's it, execute `eval "$(direnv export bash)"` every time you want to change environment. If you need to do it multiple times then it's possible to wrap the functionality...

For bash, one way is `echo $PROMPT_COMMAND | grep direnv_hook`. Each shell has a different way of providing the hook, have a look at the output of `direnv hook zsh`...

Can you explain a little bit where the requirement is coming from?

I wouldn't mind getting a PR for `direnv status --json`. Right now the output is for humans and not guaranteed to remain the same. Have a look in `cmd_status.go` and...

It's going to be tough to change this behavior without breaking back-compat. Ideally, I would like DIRENV_LOG_FORMAT to be folded into the direnv configuration and be made more flexible as...

It's still a valid issue and the code hasn't moved on that front

If dropping cygwin allows direnv to work on Windows, then I would be inclined to drop cygwin. Correct me if I am wrong but it seems like cygwin is quite...

Thanks @pjeby, for taking the time to explore and expand on the Windows environments. I think that I have finally caught up with your explanations and understanding of the problem....