summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2015-02-21Remove unnecessary braces.Andrew Janke
2015-02-17For unspecified encodings, assume it's UTF-8 or compatible (e.g. ASCII) and ↵Andrew Janke
muddle through without character encoding conversion.
2015-02-17Add support for non-UTF-8 encodings in caller's locale.Andrew Janke
2015-02-16Do not put explicit dot in $cdpath, since it causes problems on Cygwin due ↵Andrew Janke
to an underlying zsh bug.
2015-02-15Bring back -h option to ls variantsZhiming Wang
The -h options in l, ll, and la were lost in 25b1cd6. There's no reason to remove them.
2015-02-14In termsupport, use LC_CTYPE instead of LANG to enable byte-by-byte text ↵Andrew Janke
processing. LANG doesn't seem to actually work.
2015-02-14Remove terminalapp plugin and fold its implementation in to ↵Andrew Janke
lib/termsupport.zsh. Replaces the redundant Terminal.app support that was recently added to termsupport.
2015-02-13Extract CWD notifier back out of auto-title hooksMarc Cornellà
2015-02-10Merge pull request #3568 from mcornella/apjanke-title-disable-checkRobby Russell
Repost #3426: move DISABLE_AUTO_TITLE check to hooks
2015-02-10Temporarily delete over-engineered solutionMarc Cornellà
2015-02-10Fix for bad LC_CTYPE entryfrozen_dude
LANG is a colon-separated list of prefered locales; LC_CTYPE is single entry, therefore we need to remove all but one entry. Also, there is no need setting it if it is already set (LC_ALL also sets LC_CTYPE, so we check it too).
2015-02-10Use quoted $TERM value everywhereMarc Cornellà
2015-02-10Quick-fix code styleMarc Cornellà
2015-02-10term: Move DISABLE_AUTO_TITLE check to hooksAndrew Janke
Move the DISABLE_AUTO_TITLE check from title() to the preX hook functions that call it, to allow the title() function to be used directly by user or other callers.
2015-02-10Clean up appearance lib file and redundant `colors` calls in other filesMarc Cornellà
2015-02-10Implement deletion of sl alias as per #3055Marc Cornellà
2015-02-10Fix a typoLFDM
2015-02-10Moves a bindkey call from misc to key-bindings.LFDM
2015-02-10Moves remaining aliases to misc and deletes file.LFDM
There were only three aliases left in aliases.zsh File deleted!
2015-02-10Refactors history alias and moves it.LFDM
More compact case statement instead of the ugly if elif... else statement. Moves it to history.zsh
2015-02-10Brings all directory stuff to directories.zshLFDM
- Cleans out aliases.zsh. - Removes unneeded cd function.
2015-02-10Merge pull request #3525 from apjanke/term-pwd-in-precmdRobby Russell
Move pwd update output to precmd to avoid contamination
2015-02-04Reword comments on termsupport internal functions.Andrew Janke
2015-02-02Test if --color=auto is a valid option for grepThe Linux Kitten
2015-01-31Merge pull request #3478 from stephenrjohnson/custom_cache_dirRobby Russell
Allow custom cache dir
2015-01-27Move chpwd update output from chpwd hook to precmd to avoidAndrew Janke
contaminating script/function output
2015-01-08Allow custom cache dirStephen
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/ .
2014-12-21termsupport: add chpwd hook for setting pwd in Apple Terminal.appAndrew Janke
2014-12-19Merge pull request #3409 from unixorn/prevent-variable-clobberingRobby Russell
Add quoting to nvm.sh
2014-12-16Quote path in case $HOME has a space in it.Joe Block
I've seen stranger things on OS X, unfortunately. This reverts commit 1f5cecee4768be192e439a72a873a6cfe8720927.
2014-12-15Revert PR #3359 as this is breaking stuff for many folks. Need to rethink ↵Robby Russell
how we handle system defaults differently on this
2014-12-14Merge pull request #3359 from unixorn/dont-clobber-histsize-and-savehistRobby Russell
Don't clobber $HISTSIZE and $SAVEHIST
2014-12-14Merge pull request #3326 from DanielFGray/masterRobby Russell
ignore any grep aliases that might be defined
2014-12-13Change to alias and remove deprecated GREP_COLOROndřej Súkup
2014-12-13Tidy up the grep.zsh libraryMarc Cornellà
2014-12-13Use unaliased grep in flag checkMarc Cornellà
2014-12-13Ignore .bzr folders in grep tooMarc Cornellà
2014-12-13Extract VCS folders definition to avoid repetitionMarc Cornellà
2014-11-30Existing code indents with spaces, not tabs, conform.Joe Block
2014-11-30Don't clobber HISTSIZE or SAVEHIST if they're already setJoe Block
2014-11-19Switch back to oh-my-zsh.hide-dirty setting againMarc Cornellà
Commit 81004dfaba509ff62a13ba303ab941938d619326 reverted the change in 9b811fb625c03c30a766191cdf65a1c7c1fd96b2 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
2014-11-16ignore any grep aliases that might be definedDanielFGray
2014-11-06Change all whoami calls for $USER variableMarc Cornellà
This avoid spawning additional processes, as the $USER variable will **always** contain the current logged-in user.
2014-11-06Merge pull request #2946 from moinakg/masterRobby Russell
Solaris portability tweaks.
2014-11-062928 merge conflictRobby Russell
2014-11-06Merge pull request #2323 from michaelorr/slow-git-fixRobby Russell
Renaming config for parse_git_dirty() to avoid collision
2014-10-22Don't set auto_name_dirs because it messes up promptsMarc Cornellà
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
2014-09-16Update Solaris changes to use OSTYPE and zsh datetime module.Moinak Ghosh
2014-08-31Merge pull request #3045 from fornwall/remove-usr-binRobby Russell
Replace /usr/bin/env with env
2014-08-31Merge pull request #3053 from jingweno/patch-1Robby Russell
Fix missing add-zsh-hook