summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2011-07-18C-x C-e to edit current command in EDITORChristopher Sexton
The command C-x C-e opens the current command line for editing in the editor defined by the $EDITOR environment variable. Thanks to Craig Bosma and his blog post about this: http://distrustsimplicity.net/articles/zsh-command-editing
2011-05-31Fix deleted in git.zshMichael Hanson
2011-05-26Merge pull request #196 from asymmetric/masterRobby Russell
Add missing flag to unrar
2011-05-13Merge pull request #290 from arthurkalm/delete-key-workingRobby Russell
Make the delete key work correctly, instead of outputting a ~
2011-05-13Merge pull request #329 from juanghurtado/masterRobby Russell
Support for $(current_branch) on git_parse_ahead()
2011-05-09Adds support for $(current_branch) on git_parse_ahead()Juan G. Hurtado
Changes method git_parse_ahead() on git.zsh lib file. Before this change it checked directly against origin/master branch. Now it uses $(current_branch) to check for not pushed changes against the current remote branch.
2011-05-02Relax pattern matching on TERM. Closes #320.Renaud (Nel) Morvan
2011-04-29Adds new prompt methods on Git libJuan G. Hurtado
Modifies the Git lib file (lib/git.zsh), adding three new prompt methods: - git_prompt_ahead(): Shows the content of the custom var $ZSH_THEME_GIT_PROMPT_AHEAD if the local repository has commits ahead from the remote origin repository - git_prompt_short_sha(): Shows last commit SHA hash in short mode wrapped between the content of the custom vars $ZSH_THEME_GIT_PROMPT_SHA_BEFORE and $ZSH_THEME_GIT_PROMPT_SHA_AFTER - git_prompt_long_sha(): Shows last commit SHA hash in long mode wrapped between the content of the custom vars $ZSH_THEME_GIT_PROMPT_SHA_BEFORE and $ZSH_THEME_GIT_PROMPT_SHA_AFTER
2011-04-20Merge remote branch 'upstream/master'Pat Regan
Conflicts: plugins/github/github.plugin.zsh
2011-04-19Added bindings for Gnome terminal.Arthur Kalmenson
2011-04-19Make the delete key work correctly, instead of outputting a ~Arthur Kalmenson
2011-04-12Moved compinit call back to oh-my-zsh.sh, after plugins are loadedPat Regan
2011-04-12Revert "Enable alias completion, do not limit completion to just files"Robby Russell
This reverts commit c3a58b00040018743ead1e6672910433fc1ca7c2.
2011-04-08Moved the single compinit call from oh-my-zsh.sh to lib/completion.zshPat Regan
2011-04-08Replace redundant calls to compinit with a single call.Pat Regan
2011-04-04Refactor DISABLE_AUTO_TITLE to be more DRYRenaud (Nel) Morvan
2011-04-04Command title behavior no longer depend on local zsh configurationRenaud (Nel) Morvan
Fix by derekjw. closes #52.
2011-04-04Escape characters used in escape sequence to avoid triggering bugs in Apple ↵Renaud (Nel) Morvan
Terminal Closes #45 #57 #58 #86.
2011-03-23Introduce DISABLE_AUTO_TITLE optionLorrin Nelson
2011-03-16Revert "Re-order title/tab setting to make window titles work on OSX ↵Robby Russell
terminal which" Was causing iTerm title to disappear entirely.. This reverts commit d4ea399b04ef57dd31097eadc316305d1e42a194.
2011-03-16Merge branch 'osx-terminal-title' of ↵Robby Russell
https://github.com/curiousstranger/oh-my-zsh into curiousstranger-osx-terminal-title
2011-03-13Re-order title/tab setting to make window titles work on OSX terminal whichMatt Cable
doesn't support tabs titles.
2011-03-11Enable alias completion, do not limit completion to just filesWoody Gilk
2011-02-21Merge branch 'refactor-term' of https://github.com/nel/oh-my-zsh into ↵Robby Russell
nel-refactor-term
2011-02-21Merge branch 'lib-git' of https://github.com/sorin-ionescu/oh-my-zsh into ↵Robby Russell
sorin-ionescu-lib-git
2011-02-21Merge branch 'nicoulaj-theme' of https://github.com/nicoulaj/oh-my-zsh into ↵Robby Russell
nicoulaj-nicoulaj-theme
2011-02-03Added modified while newly added and type change detection to git prompt ↵Sorin Ionescu
modified status.
2011-01-30Refactor window and tab title in ttyRenaud (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-24add missing unrar flagLorenzo Manacorda
2011-01-15Merge branch 'master' of https://github.com/SuprDewd/oh-my-zsh into ↵Robby Russell
SuprDewd-master
2011-01-10Merge branch 'master' of git://github.com/robbyrussell/oh-my-zshSuprDewd
2011-01-10Added an option to remove file afterwards.Robin Ramael
2011-01-08Postponing sourcing of the theme until after local customizationsMichael Komitee
2010-12-25Support for more archive formats.SuprDewd
2010-12-24Added a function to extract various archives.SuprDewd
Also an alias for the function.
2010-12-21Added function to mkdir and immediately change to itDerek Prior
2010-11-20Rename appearance.zsh so that it gets loaded after spectrum.zsh.Julien Nicoulaud
Allows to use 256 colors in prompt themes.
2010-11-03Completion fixesgwjo
Use /etc/hosts in addtion to $HOME/.ssh/known_hosts as the source for hostname completion Turn on completion caching to speed up certain comands When completing usernames, don't include system accounts by default
2010-10-09merging in changes from robby's repoSven Lito
2010-10-09Merge branch 'title-fix' of http://github.com/philips/oh-my-zsh into ↵Robby Russell
philips-title-fix
2010-10-08functions: fix title() to not match any $TERMBrandon 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-10-09Improving git plugin so it can display much more data. Irakli Gozalishvili
2010-09-30Match xterm-color, the default OS X terminalTrevor Creech
2010-09-30Merge branch 'named_dirs_completion' of http://github.com/kremso/oh-my-zsh ↵Robby Russell
into kremso-named_dirs_completion
2010-09-30Merge branch 'shifttab' of http://github.com/kremso/oh-my-zsh into ↵Robby Russell
kremso-shifttab
2010-09-26Do not complete named-directoriesTomas Kramar
2010-08-24Removing '.' alias as it is overwriting a bash/zsh feature. Closes #63Robby Russell
2010-06-05Don't correct hpodder commands.James Rowe
2010-06-05Don't display dotfiles or reverse sort with ll alias.James Rowe
The ll alias is a very common default for bash in Linux distributions, so use that definition.
2010-06-05Ignore commands that start with a space.James Rowe
This is useful when you want to use a dangerous command, as it won't be available with history searching.