1. 26 Feb, 2019 1 commit
    • Robby Russell's avatar
      Updating Oh My Zsh shop URLs (#7619) · f319aa84
      Robby Russell authored
      * Updating Oh My Zsh shop URLs
      
      Linking directly to the Oh My Zsh inventory vs the top-level store with non-OMZ items.
      
      * Updating link to Oh My Zsh products in the install script
      
      * Updating link to Oh My Zsh shop products in the upgrade script
      
      * Getting rid of 't-' in shirts for now
      f319aa84
  2. 25 Feb, 2019 5 commits
  3. 23 Feb, 2019 1 commit
  4. 20 Feb, 2019 1 commit
    • Thomas Hutterer's avatar
      Fix "hurt sme" typo · ca1123a0
      Thomas Hutterer authored
      Just found this typo while browsing through the `plugins` folder ... and it "hurt sme" :hurtrealbad:
      ca1123a0
  5. 17 Feb, 2019 20 commits
  6. 15 Feb, 2019 1 commit
  7. 13 Feb, 2019 8 commits
  8. 12 Feb, 2019 1 commit
  9. 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
  10. 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