1. 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
  2. 19 Jun, 2020 1 commit
  3. 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
  4. 21 May, 2020 1 commit
  5. 20 May, 2020 2 commits
  6. 16 May, 2020 1 commit
  7. 11 May, 2020 1 commit
  8. 01 May, 2020 1 commit
  9. 05 Apr, 2020 1 commit
  10. 05 Mar, 2020 1 commit
  11. 03 Mar, 2020 3 commits
  12. 02 Mar, 2020 1 commit
  13. 01 Mar, 2020 6 commits
  14. 28 Feb, 2020 2 commits
  15. 27 Feb, 2020 2 commits
  16. 24 Feb, 2020 1 commit
  17. 11 Feb, 2020 1 commit
  18. 10 Feb, 2020 1 commit
  19. 16 Jan, 2020 1 commit
  20. 19 Nov, 2019 1 commit
  21. 06 Nov, 2019 3 commits
  22. 16 Oct, 2019 1 commit
  23. 19 Sep, 2019 1 commit
    • Marc Cornellà's avatar
      Fix WSL check for WSL 2 and simplify nohup in open_command · 095d56b5
      Marc Cornellà authored
      WSL 2 changes the output of `uname -r`. For instance,
      
        WSL 1: 4.4.0-18980-Microsoft
        WSL 2: 4.19.67-microsoft-standard
      
      Since WSL 2 lowercases the M, we can match for the rest of the string
      which remains lowercase throughout both versions. Another option would
      be to match for both upper- and lower-case Ms, like that:
      
        $(uname -r) = *[Mm]icrosoft*
      
      Fixed use of nohup in open_command where it was only necessary for
      xdg-open (and actually harmful for cmd.exe in WSL 2). The current logic
      is simpler and more future-proof.
      095d56b5
  24. 19 Aug, 2019 1 commit
  25. 14 Jul, 2019 3 commits
  26. 12 Jul, 2019 1 commit