1. 09 Oct, 2020 1 commit
  2. 08 Oct, 2020 1 commit
  3. 29 Sep, 2020 1 commit
  4. 28 Sep, 2020 1 commit
  5. 27 Sep, 2020 1 commit
  6. 26 Sep, 2020 1 commit
  7. 04 Sep, 2020 1 commit
  8. 18 Aug, 2020 1 commit
  9. 17 Aug, 2020 1 commit
  10. 06 Aug, 2020 1 commit
  11. 05 Aug, 2020 1 commit
  12. 04 Aug, 2020 4 commits
  13. 02 Aug, 2020 1 commit
  14. 23 Jul, 2020 1 commit
  15. 06 Jul, 2020 2 commits
  16. 03 Jul, 2020 1 commit
  17. 01 Jul, 2020 1 commit
  18. 30 Jun, 2020 1 commit
    • Patrick Moore's avatar
      Handle unset variables in various parts of the codebase (#8944) · e606ac70
      Patrick Moore authored
      DISABLE_UNTRACKED_FILES_DIRTY, DISABLE_AUTO_TITLE, GIT_STATUS_IGNORE_SUBMODULES are not set
      Handle these variables not being set with conditional access.
      
      If the user has set -u option to report attempts to use undeclared / unassigned variable, accessing the variables needs to be conditional.
      e606ac70
  19. 19 Jun, 2020 1 commit
  20. 03 Jun, 2020 1 commit
    • Marco Trevisan's avatar
      lib: don't override bigger HISTSIZE and SAVEHIST values (#8993) · ed4e317b
      Marco Trevisan authored
      oh-my-zsh Changes the HISTSIZE and SAVEHIST values to fixed sizes,
      however if a bigger value is set in ~/.zshrc, it will override it,
      potentially causing the user history to be deleted.
      
      So, only set these values if no other is set and if it is lower than the
      default ones.
      ed4e317b
  21. 21 May, 2020 1 commit
  22. 20 May, 2020 2 commits
  23. 16 May, 2020 1 commit
  24. 11 May, 2020 1 commit
  25. 01 May, 2020 1 commit
  26. 05 Apr, 2020 1 commit
  27. 05 Mar, 2020 1 commit
  28. 03 Mar, 2020 3 commits
  29. 02 Mar, 2020 1 commit
  30. 01 Mar, 2020 4 commits
    • Marc Cornellà's avatar
      Refactor grep.zsh file · dc190d87
      Marc Cornellà authored
      - Move grep-alias path to variable.
      - Use <<< "" instead of piped echo to check grep flags.
      - Remove check for --color only since it's the same release as --exclude.
      dc190d87
    • Marc Cornellà's avatar
      Fast algorithm to determine grep alias flags · 8d814fdf
      Marc Cornellà authored
      This version tries whether grep supports all the flags together
      and progressively checks older flags if the grep test fails.
      This means only one grep call if all flags are supported, and
      one additional call for every flag that's not supported, up to
      a maximum of 3 calls.
      8d814fdf
    • mattmc3's avatar
      Performance enhancement for lib/grep · 57b17810
      mattmc3 authored
      - Use $ZSH_CACHE_DIR to store the grep alias with all the right features
      - Expire the cache after 24 hours
      - See issue #8444
      57b17810
    • Shi Yan's avatar
      Ignore .tox folder in grep · a8ed1c4e
      Shi Yan authored
      a8ed1c4e