Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-29 | Add helper to easily define default values for variables and env variables. | mapc | |
2012-05-29 | Add helper to get the value of an alias only | mapc | |
2011-12-25 | Fix upgrade and uninstall functions to pick up $ZSH value | Indrajit Raychaudhuri | |
2011-06-01 | Added extract plugin. | Sorin Ionescu | |
2011-05-26 | Merge pull request #196 from asymmetric/master | Robby Russell | |
Add missing flag to unrar | |||
2011-01-30 | Refactor window and tab title in tty | Renaud (Nel) Morvan | |
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) | |||
2011-01-24 | add missing unrar flag | Lorenzo Manacorda | |
2011-01-10 | Added an option to remove file afterwards. | Robin Ramael | |
2010-12-25 | Support for more archive formats. | SuprDewd | |
2010-12-24 | Added a function to extract various archives. | SuprDewd | |
Also an alias for the function. | |||
2010-10-09 | merging in changes from robby's repo | Sven Lito | |
2010-10-08 | functions: fix title() to not match any $TERM | Brandon Philips | |
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: Brandon Philips <brandon@ifup.org> openSUSE running zsh 4.3.10 | |||
2010-09-30 | Match xterm-color, the default OS X terminal | Trevor Creech | |
2010-06-03 | Moving some rails and osx-specific functions to their corresponding plugin files | Robby Russell | |
2010-06-03 | Initial implementation of a new plugin system, so that people can managed ↵ | Robby Russell | |
which aliases/functions they want. | |||
2009-12-27 | adding quotes to tab() | Dale Campbell | |
2009-12-16 | Adding a function that will open up a ticket in Lighthouse based on the ↵ | Robby Russell | |
number and there being a URL in a hidden file. | |||
2009-09-23 | merge upstream | James Cox | |
2009-09-23 | Moving all zsh config options into a lib/ subdirectory to make way for some ↵ | Robby Russell | |
upcoming changes to directory structure and configuration options |