1. 17 Feb, 2019 9 commits
  2. 15 Feb, 2019 1 commit
  3. 13 Feb, 2019 8 commits
  4. 12 Feb, 2019 1 commit
  5. 08 Feb, 2019 1 commit
    • eric-christian's avatar
      asdf: fix homebrew installation path (#7582) · 86ea3195
      eric-christian authored
      * The check for the asdf installation directory is more precise:
      
          The existence of the directory `$HOME/.asdf` does not mean that it is the installation
          directory of `asdf`. It will also be created after installing at least one asdf plugin.
      
      * Completions, while installed with homebrew, are now expected on an alternative location.
      86ea3195
  6. 06 Feb, 2019 1 commit
    • Marc Cornellà's avatar
      z: refresh $RANDOM's value outside subshell · 052493b1
      Marc Cornellà authored
      This change references `$RANDOM` outside the subshell to refresh it for the
      next subshell invocation. Otherwise, subsequent runs of the function get the
      same value and, if run simultaneously, they may clobber each others' temp .z
      files.
      
      This is due to how zsh distributes RANDOM values when running inside a
      subshell:
      
        subshells that reference RANDOM will result in identical pseudo-random
        values unless the value of RANDOM is referenced or seeded in the parent
        shell in between subshell invocations
      
      See: http://zsh.sourceforge.net/Doc/Release/Parameters.html#index-RANDOM
      052493b1
  7. 05 Feb, 2019 1 commit
  8. 31 Jan, 2019 1 commit
  9. 30 Jan, 2019 2 commits
  10. 25 Jan, 2019 1 commit
  11. 22 Jan, 2019 1 commit
    • Jesse Farinacci's avatar
      add brew install path to search · 12c51682
      Jesse Farinacci authored
      recent `brew install jenv` installs to `/usr/local/bin/jenv`, auto-discover it for recent brew installs to avoid secondary, slower search
      12c51682
  12. 21 Jan, 2019 3 commits
  13. 20 Jan, 2019 4 commits
  14. 19 Jan, 2019 1 commit
  15. 15 Jan, 2019 2 commits
  16. 14 Jan, 2019 2 commits
  17. 09 Jan, 2019 1 commit
    • Marc Cornellà's avatar
      ssh-agent: autoload identities not already loaded (#7174) · fabee559
      Marc Cornellà authored
      With this PR the ssh-agent plugin checks the `ssh-add -l` output for the
      identities added, and adds all those specified by the user that haven't been
      added yet.
      
      We also decouple the logic of starting ssh-agent from the logic of adding
      identities, meaning that even if ssh-agent has been started by some other means
      (like launchd) we can still ssh-add the user's identities.
      
      Fixes #3019
      Fixes #6979
      fabee559