1. 10 Jan, 2011 1 commit
  2. 25 Dec, 2010 1 commit
  3. 24 Dec, 2010 1 commit
  4. 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
  5. 01 Oct, 2010 1 commit
  6. 03 Jun, 2010 2 commits
  7. 28 Dec, 2009 1 commit
  8. 16 Dec, 2009 1 commit
  9. 23 Sep, 2009 2 commits
  10. 31 Aug, 2009 5 commits
  11. 28 Aug, 2009 1 commit