summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-07Merge pull request #1686 from timsly/hub-autocompleteRobby Russell
added hub autocomplete instructions
2013-04-07Merge pull request #1690 from docwhat/git-untrackedRobby Russell
This fixes checking for git untracked items
2013-04-07Merge pull request #1662 from rylwin/patch-1Robby Russell
last-working-dir: Use >! to overwrite $cache_file
2013-04-07Merge pull request #1674 from simeonwillbanks/masterRobby Russell
Fixes #1485 Zeus should not be bundled
2013-04-07Merge pull request #1678 from lesmyrmidons/symfony2Robby Russell
Symfony2
2013-04-07Merge pull request #1682 from maplebed/ben.knifeRobby Russell
Allow you to customize the path to knife config files
2013-04-07Merge pull request #1691 from gianu/masterRobby Russell
NEW THEME: gianu
2013-04-07Merge pull request #1697 from dsx/sublime-plugin-fixRobby Russell
Prevents echo of _sublime_darwin_paths contents on zsh startup
2013-04-07Merge pull request #1698 from ConradIrwin/safe-pasteRobby Russell
safe-paste plugin
2013-04-07+safe-paste pluginConrad Irwin
2013-04-07Prevents echo of _sublime_darwin_paths contentsdsx
2013-04-04Removed colors from parenthesis.Sergio Rafael Gianazza
2013-04-04New theme: Gianu ThemeSergio Rafael Gianazza
I created a theme that I feel confortable with and want to share with everyone. The prompt format is: <user>@<host> <current_dir> (<git_status>)$
2013-04-03This fixes checking for git untracked itemsChristian Höltje
The grep expression was incorrect for normal grep. Adding the `-E` option fixed the escaping of the question marks.
2013-04-03added hub autocomplete instructionsTima Maslyuchenko
2013-04-01adding docs about knife path config variablesBen Hartshorne
2013-04-01allowing you to override knife pathsBen Hartshorne
2013-03-29modify alias sfc => sflesmyrmidons
2013-03-29Simplification name aliases and adding new aliaslesmyrmidons
2013-03-27Fixes #1485 zeus should not be bundledSimeon F. Willbanks
2013-03-26Merge pull request #749 from blueyed/setopt-correctRobby Russell
Only `setopt correct`, not "correct_all".
2013-03-26Merge pull request #1657 from ysmood/masterRobby Russell
Add a new theme 'ys'
2013-03-26Merge pull request #1658 from kavu/patch-1Robby Russell
Fix git dirty status in dallas.zsh-theme
2013-03-26Merge pull request #1659 from AshleyS/masterRobby Russell
Fixed base64 decode parameter for newer versions of base64 binary
2013-03-26Merge pull request #1661 from hellerbarde/masterRobby Russell
Fix some problems with git enabled prompts where they *always* claim to have untracked files
2013-03-26Merge pull request #1558 from sbooob/masterRobby Russell
Mercurial repository info in agnoster theme
2013-03-26Merge pull request #1573 from flz/masterRobby Russell
Add new profiles plugin.
2013-03-26Merge pull request #1595 from nevir/sublime3-supportRobby Russell
Support for Sublime Text 3, with fallback
2013-03-26Merge pull request #1598 from zasdfgbnm/masterRobby Russell
new plugin
2013-03-26Merge pull request #1607 from gekken/masterRobby Russell
added ruby 2.0.0 to rvm plugin
2013-03-26Merge pull request #1610 from mcaserta/scala_and_sbt_pluginsRobby Russell
SBT and Scala plugins.
2013-03-26Merge pull request #1611 from ripdog/patch-1Robby Russell
Update plugins/extract/extract.plugin.zsh
2013-03-26Merge pull request #1614 from miklos-martin/bowerRobby Russell
Bower plugin
2013-03-26Merge pull request #1616 from sxeraverx/masterRobby Russell
pipe git version check error to /dev/null (for when git doesn't exist)
2013-03-26Merge pull request #1524 from bonifaido/masterRobby Russell
Maven plugin completion fix for other (than Java) JVM languages and/or missing test cases folder
2013-03-26Merge pull request #1638 from RomainBelorgey/masterRobby Russell
Use completion if file Capfile
2013-03-26Merge pull request #1650 from ishtu/masterRobby Russell
add vncviewer function (using "open" functionality)
2013-03-26Merge pull request #1663 from flavius/masterRobby Russell
allow setting a custom HISTFILE before oh-my-zsh is loaded
2013-03-26Merge pull request #1664 from marcel-wolf/masterRobby Russell
add ssh-agent option to set default lifetime for identities
2013-03-26Merge pull request #1668 from sheerun/patch-1Robby Russell
Use --no-rehash option for faster startup
2013-03-26Merge pull request #1669 from desimone/masterRobby Russell
support for Go (golang) completions
2013-03-26Merge pull request #1671 from lifinsky/masterRobby Russell
Fix grails plugin
2013-03-26IMPROVED: untracked file status has priority over modified (ie: if you have ↵Yohann Bianchi
both modified and untracked files, your prompt will be red indicating the presence of untracked files)
2013-03-25Fix grails pluginSerg Lifinsky
Fix problem with "basename" command error "extra operand" (do not work with array)
2013-03-20Added golang completion support from golang.orgBobby DeSimone
2013-03-20Use --no-rehash option for faster startupAdam Stankiewicz
2013-03-16add ssh-agent option to set default lifetime of identitiesMarcel Wolf
By default, ssh-agent stores identities forever. It has an option to set a maximum lifetime for identites (useful to expire passphrase protected keys). Allow this option to be set using: zstyle :omz:plugins:ssh-agent lifetime <time>
2013-03-15allow setting a custom HISTFILE before oh-my-zsh is loadedFlavius Aspra
2013-03-13Fix whitespaceRyan Winograd
That's what I get for using GitHub text editor and not checking tabs.
2013-03-13last-working-dir: Use >! to overwrite $cache_filerylwin
Use ">!" to overwrite $cache_file in case noclobber is set. When noclobber is set, zsh will not allow the use of ">" to overwrite the contents of a file. Instead, it displays a "file exists" error. By using ">!" instead, we tell zsh to overwrite the file without complaining.