1. 04 Nov, 2011 1 commit
  2. 31 Aug, 2011 1 commit
  3. 28 Jul, 2011 1 commit
  4. 24 Jul, 2011 1 commit
  5. 23 Jul, 2011 4 commits
  6. 18 Jul, 2011 1 commit
  7. 14 Jul, 2011 1 commit
  8. 02 Jun, 2011 1 commit
  9. 31 May, 2011 1 commit
  10. 09 May, 2011 1 commit
  11. 02 May, 2011 1 commit
  12. 29 Apr, 2011 1 commit
    • Juan G. Hurtado's avatar
      Adds new prompt methods on Git lib · 077baa7b
      Juan G. Hurtado authored
      Modifies the Git lib file (lib/git.zsh), adding three new prompt
      methods:
      
      - git_prompt_ahead(): Shows the content of the custom var
        $ZSH_THEME_GIT_PROMPT_AHEAD if the local repository has
        commits ahead from the remote origin repository
      
      - git_prompt_short_sha(): Shows last commit SHA hash in short
        mode wrapped between the content of the custom vars
        $ZSH_THEME_GIT_PROMPT_SHA_BEFORE and
        $ZSH_THEME_GIT_PROMPT_SHA_AFTER
      
      - git_prompt_long_sha(): Shows last commit SHA hash in long
        mode wrapped between the content of the custom vars
        $ZSH_THEME_GIT_PROMPT_SHA_BEFORE and
        $ZSH_THEME_GIT_PROMPT_SHA_AFTER
      077baa7b
  13. 20 Apr, 2011 1 commit
  14. 19 Apr, 2011 1 commit
  15. 12 Apr, 2011 2 commits
  16. 08 Apr, 2011 2 commits
  17. 04 Apr, 2011 3 commits
  18. 24 Mar, 2011 1 commit
  19. 16 Mar, 2011 1 commit
  20. 13 Mar, 2011 1 commit
  21. 12 Mar, 2011 1 commit
  22. 04 Feb, 2011 1 commit
  23. 30 Jan, 2011 1 commit
    • Renaud (Nel) Morvan's avatar
      Refactor window and tab title in tty · faac3ba8
      Renaud (Nel) Morvan authored
      Term window title and tab title are now skinable
      Tab title can be different from window title (when supported by term)
      Default theme is optimized of usuability (no %u@%m: $~ in a 10 char tab)
      Cleanup code duplication and add comment for supported terms
      On osX it works great on iterm, and is decent once you tweak Terminal pref
      Tested under GNU screen, iTerm and Apple Terminal, need to be tested on linux
      TODO implement Konsole support (via dbus)
      faac3ba8
  24. 24 Jan, 2011 1 commit
  25. 10 Jan, 2011 1 commit
  26. 09 Jan, 2011 1 commit
  27. 25 Dec, 2010 1 commit
  28. 24 Dec, 2010 1 commit
  29. 21 Dec, 2010 1 commit
  30. 20 Nov, 2010 1 commit
  31. 03 Nov, 2010 1 commit
    • gwjo's avatar
      Completion fixes · 9465ba0d
      gwjo authored
      Use /etc/hosts in addtion to $HOME/.ssh/known_hosts as the source for
      hostname completion
      
      Turn on completion caching to speed up certain comands
      
      When completing usernames, don't include system accounts by default
      9465ba0d
  32. 09 Oct, 2010 2 commits
    • Sven Lito's avatar
      merging in changes from robby's repo · dc12853b
      Sven Lito authored
      dc12853b
    • Brandon Philips's avatar
      functions: fix title() to not match any $TERM · aab235f6
      Brandon Philips authored
      
      
      On my linux virtual terminals, where TERM="linux", I was getting
      annoying output that was messing up my prompt.
      
      It turns out the title function was always matching on the elif
      statement for xterm/rxvt no matter what and the linux vt doesn't know
      what to do with the title special control sequence and thus was printing
      out garbage.
      
      Through experimentation I figured out that the || inside of the [[ ]]
      did not work:
      
      export TERM=linux
      $ if [[ $TERM =~ "^xterm" || $TERM == "rxvt" ]]; then echo $TERM; fi
      linux
      
      $ if [[ $TERM =~ "^xterm" ]] || [[ $TERM == "rxvt" ]]; then echo $TERM; fi
      Signed-off-by: default avatarBrandon Philips <brandon@ifup.org>
      
      openSUSE running zsh 4.3.10
      aab235f6