Jonas Chevalier
Jonas Chevalier
Yeah that would be useful. I haven't figured out how to deal with multiple shells entering or leaving the folder so if you have an idea let me know. On...
Interesting, thanks for sharing. In this case I would say that it's the presentation software's responsibility to prevent the screen going to sleep, just like when a video player is...
Most use-cases here would be solved with a process manager. direnv doesn't maintain a running process so it would have to be a new project (`dirsvc`?). I think the realization...
Yeah makes sense, it would be easier to watch the lifetime of each shell that way. I guess tmux fits that bill already.
Hi @Arkham , have you seen this page yet? https://github.com/direnv/direnv/wiki/Tmux I don't know if adding an exception is a good idea or not. I would like to avoid adding specialized...
I would be open to have that configurable in the config.toml file. Something like `[env] ignore_keys = ["TMUX_PANE", "SSH_AUTH_SOCK"]`. It would require a bit of change in the code to...
I can't change this design decision due to back-compat. Direnv requires to explicitly connect the various `.envrc` together. There are two functions in the stdlib for that: `source_up` and `source_env...
can you try the latest master now that #896 has been merged in?
I think I would rather convert direnv to use `urfave/cli` or another CLI library that already supports completion out of the box. At the time where direnv was written, those...
Alternatively, ship the completion script as part of the install. Or does it require to interact with the binary?