1. 28 Aug, 2020 1 commit
  2. 04 Aug, 2020 1 commit
  3. 05 Jul, 2020 1 commit
  4. 01 Jul, 2020 1 commit
    • Kyle Laker's avatar
      agnoster: fix git working tree check (#9072) · d24a9dbc
      Kyle Laker authored
      
      
      `git rev-parse --is-inside-work-tree` does not have a different exit
      code when not within a work tree; the difference is in the output,
      either "true" when in a work tree, or "false" when not.
      
      The if was modified similarly to the check for the hide-status config,
      which also parses command output rather than exit code.
      Co-authored-by: default avatarKyle Laker <klaker@easydynamics.com>
      d24a9dbc
  5. 10 Jun, 2020 1 commit
  6. 09 Jun, 2020 1 commit
  7. 08 Jun, 2020 1 commit
  8. 03 Jun, 2020 1 commit
  9. 23 May, 2020 1 commit
  10. 22 May, 2020 1 commit
  11. 21 May, 2020 1 commit
  12. 10 May, 2020 1 commit
  13. 26 Mar, 2020 1 commit
  14. 02 Mar, 2020 1 commit
  15. 27 Feb, 2020 1 commit
  16. 25 Feb, 2020 1 commit
  17. 19 Feb, 2020 6 commits
  18. 18 Feb, 2020 3 commits
  19. 11 Feb, 2020 1 commit
  20. 04 Feb, 2020 1 commit
    • Aliaksei Maiseyeu's avatar
      af-magic: fix showing aws prompt out of the box (#8243) · 6bebc254
      Aliaksei Maiseyeu authored
      Fix issue related to #7615, #7747 and #6346
      
      After the update, aws prompt (which should be visible out of the box) disappears when a user uses a theme af-magic, because of fact that plugins are loaded before themes.
      This pull request fixes issue with not showing aws prompt in theme af-magic, by appending RPROMPT in theme af-magic instead overwriting.
      6bebc254
  21. 21 Nov, 2019 1 commit
  22. 19 Nov, 2019 1 commit
  23. 08 Nov, 2019 1 commit
  24. 16 Oct, 2019 1 commit
  25. 13 Sep, 2019 1 commit
  26. 08 Sep, 2019 2 commits
  27. 19 Aug, 2019 1 commit
    • Matthew Armand's avatar
      af-magic: add hg prompt and tweak virtualenv info (#8056) · 43ed0b45
      Matthew Armand authored
      - Add mercurial support to af-magic, so now the vcs prompt will show up in either a git or hg repository
      - The virtualenv prompt was white and bumped up against the user@hostname output
      - Fixed that so its green (which I thought highlighted it more thematically) and has a space before user@hostname
      43ed0b45
  28. 06 Aug, 2019 1 commit
  29. 31 Jul, 2019 1 commit
  30. 13 Jul, 2019 1 commit
  31. 14 Jun, 2019 1 commit
  32. 08 May, 2019 1 commit
    • Andrew Janke's avatar
      Themes: switch to using ruby_prompt_info() · 299cd477
      Andrew Janke authored
      Changes themes displaying RVM or other Ruby version info to use the central
      ruby_prompt_info function. This supports more Ruby versioning mechanisms,
      reduces copy-and-paste code, and avoids "zsh: no such file or directory: rvm-prompt"
      when run on machines that do not have RVM installed.
      
      Changes the prefix/suffix variable names to ZSH_THEME_RUBY_PROMPT_PREFIX and
      ZSH_THEME_RUBY_PROMPT_SUFFIX, since they apply to all Ruby versioning mechanisms,
      not just RVM.
      
      Allows empty ZSH_THEME_RUBY_PROMPT_PREFIX and ZSH_THEME_RUBY_PROMPT_SUFFIX.
      299cd477