- 10 Feb, 2015 1 commit
-
-
LFDM authored
- Cleans out aliases.zsh. - Removes unneeded cd function.
-
- 04 Feb, 2015 1 commit
-
-
Andrew Janke authored
-
- 28 Jan, 2015 1 commit
-
-
Andrew Janke authored
contaminating script/function output
-
- 08 Jan, 2015 1 commit
-
-
Stephen authored
We are running oh-my-zsh on a shared install and the only issue is each user having a custom cache dir. This will allow us to set the cache dir to ZSH_CACHE_DIR=~/oh-my-zsh/cache/ .
-
- 21 Dec, 2014 1 commit
-
-
Andrew Janke authored
-
- 16 Dec, 2014 1 commit
-
-
Joe Block authored
I've seen stranger things on OS X, unfortunately. This reverts commit 1f5cecee4768be192e439a72a873a6cfe8720927.
-
- 15 Dec, 2014 1 commit
-
-
Robby Russell authored
Revert PR #3359 as this is breaking stuff for many folks. Need to rethink how we handle system defaults differently on this
-
- 13 Dec, 2014 5 commits
-
-
Ondřej Súkup authored
-
Marc Cornellà authored
-
Marc Cornellà authored
-
Marc Cornellà authored
-
Marc Cornellà authored
-
- 01 Dec, 2014 2 commits
- 19 Nov, 2014 1 commit
-
-
Marc Cornellà authored
Commit 81004dfa reverted the change in 9b811fb6 when editing the merge conflict from #2928. This commit fixes that so that we don't make the same mistake again. First seen in http://git.io/Cdaj5Q
-
- 16 Nov, 2014 1 commit
-
-
DanielFGray authored
-
- 06 Nov, 2014 1 commit
-
-
Marc Cornellà authored
This avoid spawning additional processes, as the $USER variable will **always** contain the current logged-in user.
-
- 22 Oct, 2014 1 commit
-
-
Marc Cornellà authored
From http://zsh.sourceforge.net/Doc/Release/Options.html#Completion-4 > AUTO_NAME_DIRS > Any parameter that is set to the absolute name of a directory immediately > becomes a name for that directory, that will be used by the ‘%~’ and > related prompt sequences, and will be available when completion is performed > on a word starting with ‘~’. > (Otherwise, the parameter must be used in the form ‘~param’ first.) Explained in more detail in https://github.com/wayneeseguin/rvm/issues/3091#issuecomment-60083194 Related issues: https://github.com/robbyrussell/oh-my-zsh/issues/2857 https://github.com/robbyrussell/oh-my-zsh/issues/3238 https://github.com/wayneeseguin/rvm/issues/3091
-
- 16 Sep, 2014 1 commit
-
-
Moinak Ghosh authored
-
- 23 Aug, 2014 1 commit
-
-
sachin21 authored
-
- 22 Aug, 2014 1 commit
-
-
Jingwen Owen Ou authored
In older version of zsh, `add-zsh-hook` is not available, causing issues like: ``` /Users/hugo/.oh-my-zsh/lib/termsupport.zsh:32: add-zsh-hook: function definition file not found /Users/hugo/.oh-my-zsh/lib/termsupport.zsh:33: add-zsh-hook: function definition file not found ``` See https://github.com/robbyrussell/oh-my-zsh/issues/748. This patch pulls in the changes suggested in https://github.com/robbyrussell/oh-my-zsh/issues/748#issuecomment-37862691 by @mcornella and I have tested it on RHEL 5.
-
- 20 Aug, 2014 1 commit
-
-
Fredrik Fornwall authored
Some environments (such as Android) does not have /usr/bin.
-
- 11 Jul, 2014 1 commit
-
-
Moinak Ghosh authored
-
- 03 Jul, 2014 2 commits
-
-
Simon Buchan authored
-
Simon Buchan authored
-
- 28 Jun, 2014 2 commits
-
-
Albert Krewinkel authored
Merged from #2906 The function `git_prompt_info` calls `git config` for its stdout output, but doesn't handle the stderr output. This can lead to problems, e.g. if the git config file is unreadable for some reason (permissions etc). This fixes the issue by simply ignoring the stderr output.
-
Mikhail S. Pobolovets authored
Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>
-
- 10 Jun, 2014 2 commits
-
-
Will Boyce authored
-
ncanceill authored
before, 128 was returned, which could display an error, but out of a git repo this should exit silently fixes #2226
-
- 26 May, 2014 1 commit
-
-
r3dDoX authored
-
- 25 May, 2014 2 commits
- 24 May, 2014 2 commits
-
-
Simon Courtois authored
-
Simon Courtois authored
This commit move the nocorrect aliases definition so they're called only when the user set ENABLE_CORRECTION to "true" to activate commands autocorrection.
-
- 18 Apr, 2014 1 commit
-
-
Dmitriy authored
-
- 26 Mar, 2014 1 commit
-
-
Andre Eriksson authored
Since e537ee9d, the reverse-menu-complete keybinding has no longer been properly bound (it was accidentally bound to the delete key). This commit again binds it to shift-tab.
-
- 25 Mar, 2014 4 commits
-
-
Marc Cornellà authored
Fixes formatting on some rare cases when a percent ends up in the $CMD variable, like these below: - When assigning a variable, $CMD ends up with the second parameter; in this case, $CMD will contain '+%s%N', messing with the syntax: $ a=`date +%s%N` - A function (or command in general) that contains a percent symbol: $ to\%() { echo $(( $1 * 100 / $3))\% } # $CMD=to%() $ to% 2 of 10 # $CMD=to%
-
LFDM authored
-
Marc Cornellà authored
Fixes #2641, #2642
-
nXqd authored
-