- 11 Jun, 2015 9 commits
-
-
Michele Bologna authored
-
Paul authored
Fixed error with spaces in commands
-
Luca Stefani authored
-
Octavian Neamtu authored
-
Oleksandr Shybystyi authored
-
Paul Melnikow authored
Without this change, whether a function can invoke 'subl' depends on the order in which modules are loaded. With this change, the order doesn't matter. zsh resolves aliases at parse time not run time, which means if you invoke an alias from a function, the alias must be defined before the function. See http://stackoverflow.com/a/25532276/893113 which refers to an explanation of this limitation. For code which may be used non-interactively, the recommend workaround is to use functions instead of aliases.
-
Jonathan Roemer authored
-
Matheus Cruz Rocha authored
This Change remove the .zsh on the plugin activate example, cause with the .zsh at the end the plugin won't be activated
-
DimitriSteyaert authored
-
- 10 Jun, 2015 8 commits
-
-
Blake Watters authored
Disable globbing when executing `zeus rake` aliases to enable use of square brackets without escaping
-
Sean Escriva authored
-
Andrew Purcell authored
Sometimes the output of ``homebrew --prefix`` and ``homebrew --prefix awscli`` don't match, and the second is the correct call.
-
David Hartmann authored
added commenting functionality by appending 'm' after the issue key (regular JIRA shortcut)
-
Wayne authored
Remove the docker insert command of autocomplete
-
liuxiang authored
-
Alexandre Joly authored
version bumped
-
Alexandre Joly authored
version bumped
-
- 04 Jun, 2015 1 commit
-
-
Lucas Braun authored
Update README formatting
-
- 31 May, 2015 1 commit
-
-
Nicolas Brousse authored
-
- 12 May, 2015 1 commit
-
-
Jad Bitar authored
-
- 08 May, 2015 1 commit
-
-
ncanceill authored
-
- 29 Apr, 2015 1 commit
-
-
Kennedy Oliveira authored
Fixing some issues where show repeated weird values, and fixed commands that need the container autocomplete without being running, like start, now it autocompletes showing all the containers so you can start without knowing the right name
-
- 26 Apr, 2015 1 commit
-
-
Will Mendes authored
-
- 23 Apr, 2015 1 commit
-
-
Will Mendes authored
-
- 18 Apr, 2015 1 commit
-
-
Will Mendes authored
-
- 16 Mar, 2015 2 commits
-
-
Abner Chen authored
-
XerWandeRer authored
Added support for `tcpip` option
-
- 11 Mar, 2015 1 commit
-
-
James Womack authored
-
- 24 Feb, 2015 2 commits
- 23 Feb, 2015 3 commits
-
-
Kristján Oddsson authored
This patch will re-order the if statements when checking what operating system the user is running. This is useful for people that already have a `notify-send` binary in their $PATH but are running OSX. An example of such requirements is anyone running `vagrant-notify` is required to have a `notify-send` binary on their $PATH. See [link](https://github.com/fgrehm/vagrant-notify#os-x).
-
uberspot authored
-
Michał Ordon authored
-
- 22 Feb, 2015 5 commits
-
-
Mads Mætzke Tandrup authored
-
Robby Russell authored
Removing say() function in perl plugin so that it doesn't overwrite OSX comand line utility. Closes #2562
-
Robby Russell authored
-
Robby Russell authored
-
Brian Derr authored
-
- 20 Feb, 2015 1 commit
-
-
Murilo Opsfelder Araujo authored
If a user sets ZSH_THEME_HG_PROMPT_* as the following, he ends up with %{$reset_color%} resetting the bold style of last character ")" because _SUFFIX was expanded before calling hg_dirty(): ZSH_THEME_HG_PROMPT_PREFIX="%{$fg_bold[blue]%}hg:(%{$fg[white]%}" ZSH_THEME_HG_PROMPT_SUFFIX="%{$reset_color%}" ZSH_THEME_HG_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" ZSH_THEME_HG_PROMPT_CLEAN="%{$fg[blue]%})" With this patch, the variable ZSH_THEME_HG_PROMPT_SUFFIX is lastly displayed, following the same order as in git_prompt_info(), i.e. <prefix><dirty><suffix>.
-
- 19 Feb, 2015 1 commit
-
-
Brian Derr authored
-