1. 06 Nov, 2019 2 commits
  2. 16 Oct, 2019 1 commit
  3. 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
  4. 19 Aug, 2019 1 commit
  5. 11 May, 2019 1 commit
  6. 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
  7. 07 May, 2019 1 commit
  8. 22 Apr, 2019 1 commit
  9. 09 Apr, 2019 2 commits
  10. 08 Apr, 2019 1 commit
    • Marc Cornellà's avatar
      lib: delete PS1 default · 30594886
      Marc Cornellà authored
      A default PS1 doesn't make sense: the user will either choose a theme or not
      care about a default prompt since they can set it themselves.
      
      Fixes #7054
      30594886
  11. 21 Mar, 2019 2 commits
  12. 25 Feb, 2019 1 commit
  13. 20 Jan, 2019 1 commit
  14. 15 Sep, 2018 1 commit
  15. 09 Sep, 2018 1 commit
  16. 08 Sep, 2018 1 commit
  17. 19 Aug, 2018 1 commit
    • John Burwell's avatar
      Add jenv plugin · e8b99589
      John Burwell authored
      Initializes jenv and provides the jenv_prompt_info funtion to add
      Java version information to prompts.  This function is stubbed in
      prompt_info_functions script to allow it to be safely called
      regardless of whether or not the jenv plugin is loaded.
      
      It also splits detection of the plugin/versions directory and bin directory
      to suppport the way Homebrew splits the jenv bin and data directories
      e8b99589
  18. 09 Aug, 2018 1 commit
  19. 07 Aug, 2018 1 commit
    • Janosch Schwalm's avatar
      use https everywhere (#6574) · 19b925e7
      Janosch Schwalm authored
      * use https everywhere
      
      * use https links on the files that are left
      
      Also, removed some broken links and updated redirections.
      19b925e7
  20. 02 Aug, 2018 1 commit
  21. 24 Jul, 2018 1 commit
  22. 13 Jul, 2018 1 commit
  23. 02 Jul, 2018 1 commit
  24. 01 Jul, 2018 1 commit
  25. 30 Jun, 2018 2 commits
    • Marc Cornellà's avatar
      open_command: fix and improve command for WSL · f898ada8
      Marc Cornellà authored
      - Add double quotes to command so that the next argument isn't
        interpreted as the title for the start command.
      
      - If the first argument is a valid path, convert it to Windows path
        notation. If `wslpath` fails—because it's a path from inside WSL,
        which cannot be converted to Windows path notation— fail with an
        error code.
      
        This last circumstance will show an error like so:
      
          wslpath: path: Result not representable
      f898ada8
    • Marc Cornellà's avatar
      open_command: simplify code · 12086593
      Marc Cornellà authored
      12086593
  26. 17 Jun, 2018 1 commit
  27. 26 May, 2018 2 commits
  28. 07 May, 2018 1 commit
  29. 24 Apr, 2018 1 commit
  30. 22 Apr, 2018 6 commits