Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add jump plugin, which allows you to easily jump around the file system #2045

Merged
merged 9 commits into from
Sep 6, 2013

Conversation

jeroenjanssens
Copy link
Contributor

Easily jump around the file system by manually adding marks.
marks are stored as symbolic links in the directory $MARKPATH (default $HOME/.marks)

This functionality complements autojump, which keeps a database of the most-common used directories.

Usage:

jump FOO: jump to a mark named FOO
mark FOO: create a mark named FOO
unmark FOO: delete a mark
marks: lists all marks

@patcon
Copy link

patcon commented Aug 17, 2013

👍

@treejamie
Copy link

This is great.

@DouweM
Copy link

DouweM commented Aug 17, 2013

👍

3 similar comments
@manufaktor
Copy link

+1

@borian
Copy link

borian commented Aug 17, 2013

+1

@pattonjp
Copy link

+1

@DouweM
Copy link

DouweM commented Aug 17, 2013

marks isn't completely working for me (OS X 10.8.3, using zsh):

% cd ~/Dropbox/
% mark dropbox
% marks
dropboxt-> /Users/douwemaan/Dropbox

The t after dropbox is supposed to be a tab, but for some reason \t from the script is shown literally.

@DouweM
Copy link

DouweM commented Aug 17, 2013

Suggestion: Add an autocomplete script that lists the marks when hitting jump <TAB>, like cd <TAB> does.

@ghost
Copy link

ghost commented Aug 17, 2013

👍

6 similar comments
@shadabahmed
Copy link

👍

@unr
Copy link

unr commented Aug 17, 2013

+1

@ins429
Copy link

ins429 commented Aug 17, 2013

+1

@Cinamonas
Copy link

👍

@mkrisher
Copy link

👍

@jqtrde
Copy link

jqtrde commented Aug 17, 2013

👍

@theckman
Copy link

👍

I'd love to see this merged in to OMZ.

@bjori
Copy link

bjori commented Aug 17, 2013

@DouweM add something like this into your .bashrc

function _jump() {
    local keys word

    word=${COMP_WORDS[COMP_CWORD]}
    keys=$(ls -l $MARKPATH | sed 's/  / /g' | cut -d' ' -f9 | grep "^$word")

    if [ ${#keys[*]} -gt 0 ]; then
        COMPREPLY=($(compgen -W "${keys[@]}" $word))
    fi

    return 0
}

complete -F _jump jump

haha. and now I realize this is a pull request for oh-my-zsh :)

@DouweM
Copy link

DouweM commented Aug 17, 2013

@bjori Thanks, but yeah, this is a PR for an oh-my-zsh plugin, which is why I'm suggesting the autocomplete feature be added to the jump plugin this PR is proposing.

@pielgrzym
Copy link
Contributor

👍

How about adding a simple completion function:

_jump_comp() {
    reply=($(ls $MARKPATH))
}
compctl -K _jump_comp jump

or using expansion (this one is better since it includes only symlinks):

_jump_comp() {
    reply=($MARKPATH/*(@:t))
}
compctl -K _jump_comp jump

Also, isn't function keyword somewhat POSIX incompatible?

EDIT:

On OSX I've rewritten the marks() function this way:

autoload colors
marks() {
         for link in $MARKPATH/*(@); do
                 echo "$fg[cyan] ${link:t} $reset_color -> $fg[blue] $(readlink $link) $reset_color"
         done
}

This way it colors the output. No date display though - it seems problematic ;)

EDIT2:

Mark display function using tab alignment:

autoload colors
marks() {
         for link in $MARKPATH/*(@); do
                local markname="$fg[cyan]${link:t}$reset_color"
                local markpath="$fg[blue]$(readlink $link)$reset_color"
                printf "%s\t" $markname
                printf "-> %s \t\n" $markpath
         done
}

😆

@pielgrzym
Copy link
Contributor

Also - I would make mark behave differently when no args supplied (with no args it would list marks, with an arg it would add new mark):

mark() { 
        if (( $# == 0 )); then
                marks
        else
                mkdir -p $MARKPATH; ln -s $(pwd) $MARKPATH/$1
        fi
}
alias m=mark

@javonharper
Copy link

👍

1 similar comment
@525c1e21-bd67-4735-ac99-b4b0e5262290

+1

@monokrome
Copy link

Won't this break with directory names which have spaces? I think that quoting your directory names is needed to solve this.

@sammcj
Copy link

sammcj commented Aug 18, 2013

Doesn't seem to work so well on OSX w/ ZSH:

[sammcj:...c/Music/Sams Music/Music 19]$ mark music
ln: /Users/sammcj/.marks/music: No such file or directory

Pretty sure this is because it doesn't seem to play nice with spaces.

@pielgrzym
Copy link
Contributor

@sammcj - definately this is the reason. Qouting every path in mark, unmark helps (quoting $MARKPATH/$1 enables spaces in marks' names). Don't want to copy paste stuff again, but here is my version (customized to automatically add all projects dirs to jumplist) with fixed spaces issue: https://github.com/pielgrzym/zshrc/blob/marks/zsh.d/marks.zsh

@pielgrzym
Copy link
Contributor

Also, check this out:

_mark_expansion() {
        setopt extendedglob
        autoload -U modify-current-argument
        modify-current-argument '$(readlink "$MARKPATH/$ARG")'
}
zle -N _mark_expansion
bindkey "^g" _mark_expansion

This code creates a zle widget to replace markname with full mark path, like this:
# cp /tmp/file mymark<C-g>
will become:
# cp /tmp/file /absolute/path/to/my/mark

@monokrome
Copy link

I have already provided a pull request on the original repository in order to solve the issue with spaces, semicolons, etc in directory names.

jeroenjanssens#1

Please do not incorporate readlink in this. It is unnecessary, and if someone had actually made a bookmark inside of a symlinked directory - it is most likely intentional and not hurting anyone to retain that data. Reading the link does not add any value, but potentially removes value from this feature.

If someone has a good reason to use readlink then great - they can create a function that wraps mark with one that performs a readlink. However, incorporating it in the original script is confusing and not useful in most cases.

@pielgrzym
Copy link
Contributor

@monokrome no idea why you said 'readlink potentially removes value' from this feature. Readlink only resolves original directory for listing/substitution - it doesn't hurt to do this. Who would put an actual directory in ~/.marks anyway?

@pielgrzym
Copy link
Contributor

@monokrome also - the sed magic in mark listing is apparently broken under OSX (the second sed doesn't add a tab) - your pull request didn't fix this.

mchataigner pushed a commit to mchataigner/oh-my-zsh that referenced this pull request Nov 1, 2013
mchataigner pushed a commit to mchataigner/oh-my-zsh that referenced this pull request Nov 1, 2013
Drarok pushed a commit to Drarok/oh-my-zsh that referenced this pull request Nov 7, 2013
Drarok pushed a commit to Drarok/oh-my-zsh that referenced this pull request Nov 7, 2013
habnabit added a commit to habnabit/dotfiles that referenced this pull request Nov 18, 2013
2dc566f Merge commit '843c136d141755269742fd12e8da092d58753a70'
843c136 Squashed 'plugins/zsh-syntax-highlighting/' changes from 732b7d6..dbd27cb
c75fa15 Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
9f5a895 Merge pull request #2084 from mekanics/update-pod-plugin
d7418f2 Merge pull request #2253 from eddiemonge/patch-1
06021cc Merge pull request #2209 from quodlibetor/pip-caching-fixes
72aa4dd Merge pull request #2257 from mfaerevaag/master
6f48f58 Added wd plugin
3930a63 no tabs in a space-d file
7a7eda1 Merge pull request #2219 from Profpatsch/theme-agnoster
1cc1906 Merge pull request #2244 from marcoccchan/master
8ab8411 Merge pull request #2218 from wari/linuxonly-rename
2b214f1 Merge pull request #2239 from santagada/master
a4f4ed0 Merge pull request #2243 from sabarishcrri/bundle_plugin_nobundle_fix
0f380ea Merge pull request #2245 from cadusk/p3
c6dce05 python3 clean updated.
bb2064e Use environment specific open command when creating a new Jira issue.
27f9747 bundle plugin throwing error when bundle is not in path while initializing
009b906 agnoster theme not showing virtualenv status
e30a124 Merge pull request #2220 from nishigori/fix-bad-ps-syntax
dd4f570 Fix bad ps syntax in ssh-agent plugin
5718d2b Forgot one symbol for hg.
b2376c3 Merge pull request #1529 from aquaplanet/fix-sshagent-openbsd
7eb2f52 `linuxonly` doesn't work unless renamed properly
0d36ecf Merge pull request #2174 from oxnz/master
008e57a Make the pip cache work with djangopypi2
78df6e9 pip: successfully cache all the packages
0eb86f8 updated to the latest version of cocoapods 0.27.1
90c28b7 Merge pull request #1688 from mbauhardt/z
042ee6e Merge pull request #2138 from Profpatsch/theme-agnoster
9f88fb5 Merge pull request #2165 from kevinxucs/custom-gitignore-fix
e44c147 Merge pull request #1963 from shajra/pr/gpg-fix
86d57e8 Merge pull request #2078 from tbuehl/master
07ad2ba Merge pull request #2192 from kevintraver/tmux-aliases
6533dc6 Merge pull request #2184 from jmagnusson/agnoster_respect_venv_disable_prompt
8f2e53c Merge pull request #2107 from maxd/master
d01ca03 Add tmux aliases
0f9db24 Fix: Agnoster theme added venv name even if disabled See http://www.virtualenv.org/en/latest/index.html\?highlight\=virtual_env_disable_prompt\#activate-script for info regarding this.
500e5a7 add itunes function to control itnues from the terminal
c5902d3 Moved misplaced plugins.
a7693b0 gitignore fix for custom folder.
c79e5a9 Merge pull request #2132 from jkaving/forklift2
bbe4ea5 Merge pull request #2139 from deiga/patch-1
a8efe61 Merge pull request #2145 from futjikato/master
9afb139 Updated completion to work with comma seperated list
33b1a3b Added gitignore plugin ( for gitignore.io )
671db71 Added '.jar'
387de3a Added '.war' extension to unzip
fa85b4d More expressive symbols for git and mercurial.
2be4158 Add support for ForkLift 2 to the ForkLift plugin
e8c3619 Check bundler version to avoid error with unsupported command line arguments
61e3951 Revert "Replace no unicode glyph on hexa string"
b57118b Merge pull request #2065 from prudprud/master
0582bd1 Merge pull request #1763 from jonilicious/master
26e936e Merge pull request #1967 from tchaudhri/gdc_git_alias
4275e68 Merge pull request #2079 from paulmelnikow/subl
9d93608 Merge pull request #2077 from paulmelnikow/nvm
ea4d336 Merge pull request #2060 from dchusovitin/bug-node-doc
91c9d98 Merge pull request #2066 from agronemann/patch-1
88c9d01 Merge pull request #2087 from Stibbons/gsemet_push_theme_chooser
d570178 Merge pull request #2098 from monstermunchkin/master
d72ebc0 Merge pull request #2043 from quodlibetor/fix-pip
fc70d76 Merge pull request #2053 from fluxrad/mosh
19e1a3e Merge pull request #2093 from zdevex/fixCommentsInTemplate
a712579 Merge pull request #2099 from mchaisse/master
ac58ffd Merge pull request #1840 from yleo77/master
0240ac6 Merge remote-tracking branch 'robbyrussell/master'
4dbe437 Added WIP alert to the gallois' theme
095a01d Added WIP (work in progress) feature to git.plugin
91b6a6b jump plugin: fix autocompletion with single mark
9d2b5c8 Fixed comments in zshrc.zsh-template about disabling auto updates.
b51c2a0 Merge pull request #1987 from zvirusz/patch-1
0453231 Merge pull request #2002 from stibinator/master
475fb3a Merge pull request #1829 from docwhat/compinit
1c468c6 Merge pull request #839 from eproxus/sunrise-fixes
e99a8fb Merge pull request #2080 from Mehonoshin/bundler-parallel-installing
cf4eded Merge pull request #1975 from fff/master
40b1cf0 repo list search one level deeper
0fcb7dd Display right prompt in theme chooser
bdb2cab typo
f6fb348 updated the arguments list to the newest version (0.24.0) of cocoapods
dff966a Logo draft 1...
d7b594e Merge pull request #2045 from jeroenjanssens/master
d3e005d Fix aliasing pwd
255b0c4 Mark function asks for confirmation and uses basename of directory when no argument is given
55d4873 Change marks function and remove 'function' keyword as suggested by pielgrzym in ohmyzsh/ohmyzsh#2045 (comment)
4517db6 Add _completemarks function as suggested by pielgrzym in ohmyzsh/ohmyzsh#2045 (comment)
9cd1afb Merge pull request #2 from JustinAiken/feature/marks_autocomplete_avaiable
69ce236 Support of parallel bundle install
a265ace Better filename matching
128cd3f Filter out missing links with jump autocomplete
4da4d12 Sublime Text: Harmonize alias with the Sublime Text install instructions
3007f96 NVM: Avoid providing completions when nvm is not installed
5bf2057 Add commonly used git stash aliases
e3c02bf Plugin for Node Version Manager
958c847 Update bundler.plugin.zsh
baffc3b Replace no unicode glyph on hexa string
fda5afa Merge remote-tracking branch 'robbyrussell/master'
300118e Fixed opening documentation on Linux (node)
f11934e Add support for mosh (remote-shell) tab completion.
73c22c1 Add tab completion for jump plugin
e368bf1 Add jump plugin, which allows you to easily jump around the file system
e4d0b2b Improve pip plugin options support
b9474c4 changed duck to ddg for alias
434f3bc Merge pull request #2028 from AeonAxan/master
f6dbe21 Merge pull request #1672 from miry/rails3_command_fix
39a5e36 Merge pull request #1790 from simlegate/master
00183d1 Merge pull request #1961 from brenttheisen/issue_1952_pr
89067b5 Merge pull request #1960 from mekanics/plugin-pod
e724a63 Merge branch 'master' of https://github.com/AeonAxan/oh-my-zsh
2d1a07a fixed minor errors
0a62f66 Update README.md
619ecb5 add docker autocomplete plugin
0456664 added duckduckgo to web-search
25913cf added duckduckgo to web-search
c8dbadd Added completion for second argument for 'brew reinstall'
5fcb6e1 Merge pull request #1988 from jwarwick/mix
dde7aef Merge pull request #1992 from jeromemacias/patch-1
34ce86e Merge pull request #1994 from kennethgeerts/master
a256f7a Merge pull request #1993 from zvirusz/patch-2
107d196 Updated gem plugin zsh completion (gem 2.0.3).
b456541 In capistrano completion show also tasks without description
d0e312f Fix symfony command completion 'permission denied'
4b8e109 Added autocompletion support for Elixir mix command
cbbdc0d Added 'reinstall' command to brew completion
2cc4801 Merge pull request #1980 from awidegreen/upstream
2aebcb8 Merge pull request #1981 from trobrock/knife-ssh
9a9e6e9 No cat, and hide errors for missing cache file
00ccee1 Add knife_ssh command to make connecting to servers managed with chef easier
5c529b5 Fix ssh-agent plugin identities comment for using multiple identities.
6041e49 set default value `--max-count=10`
67b2781 Merge remote-tracking branch 'robbyrussell/master'
cf8d760 PLUGIN: gpg-agent: export SSH_* environment variables too
ba7fe6d show file liste on 'pod push [REPO]' and tab, 'pod spec lint' and 'pod podfile-info'
849c80b fixed typo in tmux plugin
57a2327 Added a 'git diff --cached' alias -> 'gdc'
3d20488 fix gpg-agent "running already" check
05d8fdf Copy and paste of two functions from Ubuntu 13.04's version of /usr/share/zsh/functions/Completion/Unix/_git that were referenced in 46f0d8d. Fixes #1952.
45314ee correct filename in the comments
7f74294 Merge pull request #1935 from mateitrusca/master
0892bce supplemented with options
c48822b show repos on pod push
1d636fe pod-list
cf5ca2f commands and subcommands
c26facb first few lines for the autocompletion of cocoapods
9cec52c fixed typo in tmux plugin
b0e4381 Merge pull request #1764 from johnjohndoe/feature/rails3-autocompletion
b36f53c Merge pull request #1920 from dongweiming/update-coffee
3072a20 Merge pull request #1916 from okuramasafumi/master
db82b8e Merge pull request #1919 from dongweiming/breaking-change-bower
04c98ae Merge pull request #1917 from brandonblack/rvm-plugin
4fe4db5 Update coffee completion
012afe2 The current version of bower is completely unavailable, plugin depth modification
644728b rvm plugin: update to ruby version helpers and rvm-update
c51ef9d Change duplicated alias name
10bd036 Add autocompletion for Rails3.
bc3cadf Merge pull request #1913 from chriskrycho/patch-2
f25e2d2 Add more capable hg incoming and outgoing count handling
b9baf37 Merge pull request #1859 from ayushs/plugin-git-clean
a8c0c4d Merge pull request #1864 from Stibbons/gsemet_push_git_plugin
3a3fd68 Merge pull request #1865 from Stibbons/gsemet_push_repo_plugin
e727068 Merge pull request #1867 from telser/master
6e3e07f Merge pull request #1869 from lucasuyezu/env_logs
89b8e05 Merge pull request #1868 from mlacorte/master
e8c7b77 Merge pull request #1880 from posva/rand-quote
5bccf4b Merge pull request #1876 from chriskrycho/patch-1
7655a65 Merge pull request #1881 from iammichiel/patch-1
11b7155 Merge pull request #1886 from tresni/patch-5
bf2a85c Merge pull request #1901 from geecu/autocomplete_required
0868d71 Merge pull request #1708 from tessi/extend_mercurial_plugin
4f8d6a8 Merge pull request #1773 from essembeh/master
1e625b4 Merge pull request #1903 from andschwa/tmux_iterm2
354211f Merge pull request #1904 from oohlaf/gpg-agent-fix
2b88b0d Merge pull request #1908 from UncleBill/patch-1
84b9598 Merge pull request #1909 from gonghao/master
c881211 Merge pull request #1910 from dongweiming/add-celery-completion
a18fa83 Add celery completion
ebfc904 add virtualenv prompt support for agnoster theme
87a1d8a git-pull add --rebase option
64fc125 Typo
711e96b Prevent starting multiple gpg-agents
55f7990 Not loading home tmux confs when iTerm2 tmux integration is enabled
bc65443 Adding support for iTerm2 tmux integration via option '-CC'
78dba75 Merge pull request #1872 from gdetrez/new-powerline-range
c888cd1 Merge pull request #1873 from charlesjohnson/bundler-plugin
0f2b24c Merge pull request #1887 from tgkokk/git-slow-fix
32b4755 Merge pull request #1889 from jerolimov/patch-1
85c43f8 remove unused function
decf9cd autocomplete required packages as second argumet
46d4606 Merge pull request #1756 from rkj/master
b88b5b2 Merge pull request #1885 from eakret/termsupport-fix
f63de87 Merge pull request #1894 from codewhale/master
4370e2a Merge pull request #1893 from jeremydt/postgres
4eace87 debian plugin: ignore alias in sudo/aptitude check
f8e3f29 Add new plugin for homebrew installed version of postgres
b074886 Do not clear tab when calling it with an argument.
c73047e Merge pull request #1877 from spazm/virtualenvwrapper-cleanup
b8af807 Merge pull request #1878 from spazm/virtualenv-cleanup
bab1800 Correctly detect Rapid Board
9703eba Fixed slow behavior when using GitHub wrappers
ab7604e Escape both % and $ in the command line
d6945e2 Adding a rebase option to git alias.
60aa92b Messed up the comment somehow...
e4884da Random quotes from the internet
894e1ca virtualenv cleanup: replaces subshell with prompt expansion.
e73dd2c virtualenvwrapper plugin cleanup
c5aaa11 Add count for incoming and outgoing changesets.
5d6a06b Merge pull request #1870 from mfrobben/patch-1
ec17765 Update bundler.plugin.zsh
1e86e65 Update bundler.plugin.zsh
97849bd Update the character used in powerline
b1f41f6 Update README.textile
6b832b9 add some alias for git flow
8300f62 Adding testlog and prodlog.
0118e18 Fixed color on git prompt for superjarin theme
82666e2 A cabal plugin based on the lein plugin
46f0d8d Improvement in the git plugin
4b945a8 New plugin for git-repo (https://code.google.com/p/git-repo/)
6f8e8c5 Added alias for git clean
86a889e Merge pull request #1849 from lemieux/master
bd38c50 fix the open command in linux using xdg-open
79196f8 Merge pull request #1834 from croach/disable_untracked_files_dirty_fix
0078538 Merge pull request #1775 from marcusmueller/fixupgradetool
00848cd add gf alias for git flow
78077af Merge pull request #1837 from xuhdev/web-search
688225a Merge pull request #1839 from Kronuz/patch-1
69116fa Fixed recursion. Git not needed for it to work.
2531381 Add web-search plugin.
4ff861e Adding a fix for the DISABLE_UNTRACKED_FILES_DIRTY option.
d2fe03d Create the zcompdump based on version and host
a911148 add search by filename and file content feature
27c6bec Merge pull request #1803 from bebugz/patch-1
6de78ad gentoo linux support
b5409fc add git alias 'gcmsg' and stand for 'git commit -m'
22dce9e add git alias 'gcmsg' and stand for 'git commit -m'
29e696d rename gcm to gcmsg and stand for 'git commit -m' #1790
b36c42b rename gcm to gcmsg and stand for 'git commit -m'
cf3a03d rm alias gcm='git checkout master' and add alias gcm='git commit -m'
b34aee7 Merge pull request #1774 from kevinxucs/sublime-default-2
b427a41 Merge pull request #1779 from lorn/fasd_update
f28e16a Cache for fasd --init
39b46f5 eliminated unnecessary cd and failing substitution
17a092b Change sublime text path select priority on mac.
f77a545 Uncomment l alias
2f7479b Update the wrong variable used in rb20 function. Fixes #1762
cf9b011 Fixed missing retcode function
bf96452 extend mercurial plugin to be more like git/svn
b6ea876 Merge pull request #690 from essembeh/master
fd50759 Merge pull request #1254 from systemfreund/master
ffc6ae9 Spin to bundler
dff6333 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
f44d403 Resolving conflict with merge of #1058
02f86c4 Merge pull request #1633 from alec-c4/master
980aadd Merge pull request #917 from agate/patch-1
6637c29 Merge pull request #1091 from jmazzi/patch-1
24e59ae Merge pull request #1102 from drnic/git-config
7ab25fb Merge pull request #1225 from bobmaerten/patch-1
89515e3 Merge pull request #711 from jasongill/textmate-plugin-improvement
5078c08 Merge pull request #424 from hackedy/fix
cd09089 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
8ce587a Resolving conflict when merging in #528
8890df1 Merge pull request #922 from sbfaulkner/master
b035662 Merge pull request #1053 from cwoodcox/master
c3c355a Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
dd62470 Updating the README file
27ff262 Merge pull request #1088 from avit/avit-theme
b4578be Merge pull request #818 from jmacdonald/master
e4891c5 Merge pull request #1569 from ZeroKnight/master
81ed0c4 Resolving conflict with merge of #970
b0f8683 Merge pull request #1223 from bigjust/master
de1f803 Merge pull request #1620 from hreese/gpg-agent_with_sensible_ssh-agent
84d9b02 Merge pull request #1490 from khrt/master
685c746 Merge pull request #1565 from serdardalgic/autoenv-plugin
a2c8db9 Resolving conflict in #1266 merge
7cdb6d6 Resolving conflict when merging in 1570
d6a36b1 Merge pull request #1575 from mguindin/agnoster-change
b61555d Merge pull request #1582 from To1ne/pushdminus
8fea507 Merge pull request #1608 from swanandp/m_lion_terminal_same_tab_support
de8bcef Merge pull request #1622 from hacfi/patch-1
cb8ccaf Merge pull request #1634 from Anahkiasen/patch-1
7787d1d Merge pull request #1641 from NeuralSandwich/master
1235b77 Merge pull request #1702 from mbauhardt/copyfile
42127be Merge pull request #1715 from dbohdan/master
966108a Merge pull request #1724 from miry/rails_aliases
6daaae6 Merge pull request #1703 from marcparadise/mp/knife-chef-11-initial-support
73edf1f Merge pull request #1704 from laggyluke/st3
1ae16a2 Merge pull request #1718 from toctan/master
2badd62 Merge pull request #1721 from z2v/hgplugin
108fe7c Merge pull request #1707 from bkg/django-static
b01a48d Merge pull request #1714 from f0y/07738ea86330b7b77127fc6f18474b3da2c6ecec
51d7d57 Merge pull request #1719 from MatthR3D/master
2a2cc81 Merge pull request #1726 from rkj/master
d8b6acd Merge pull request #1728 from szines/patch-1
b5ead7b Merge pull request #1729 from statschner/master
91cb795 Merge pull request #1739 from felipec/fc/gitfast
e953fcf Merge pull request #1749 from johnjohndoe/feature/zeus-auto-completion
81ed18f Merge pull request #1733 from jaseg/patch-1
78bb699 Merge pull request #1734 from cborgia/master
bba4575 Merge pull request #1737 from hron84/feature-bundler-add-cleanup
56b4d4d Merge pull request #1738 from ronshapiro/master
d8d9da0 Merge pull request #1748 from tobiassjosten/patch-1
30b0eb3 Merge pull request #1740 from felipec/fc/git
adb86fa Merge pull request #1750 from JamesFerguson/master
d4d8939 Only trim remote names; be git-flow friendly
8cd1b21 Update rails4.plugin.zsh
d537193 Add auto-completion for zeus.
680302c Added 'jekyll' to list of bundled commands
93ee939 Merge pull request #1745 from jtheoof/master
5f32c8e Merge pull request #1747 from dhemmerling/mvn_tomcat-redeploy
785b1c6 mvn plugin was missing "redeploy" completion for tomcat.
e41714d Added option to allow untracked files as non dirty
c944f8b gitfast: fix prompt
72a8c08 gitfast: synchronize with upstream
d615f64 git: fix parse_git_dirty()
bc38553 Separate the battery_pct_remaining data into it's own function so that it can be obtained even if the battery is connected.
a08f626 Adding undocumented clean command to completion
52dc3b9 Edited Grammar in template file
f2b915c The safe-paste plugin now works with tmux, too
7db2b20 Added git-flow-avh plugin.
0b3d560 Update rvm.plugin.zsh to the latest ruby versions
5dae44a Return code instead of dollar sign
ad3f592 Added global aliases to use RAILS_ENV.
460cb3d Edit some yaourt aliases and add some
388ae92 command-not-found support for Arch Linux
2d2aa64 Implemented UTF-8 support in fishy.zsh-theme.
07738ea Add colorize plugin
85426a5 Merge pull request #1526 from filipechagas/master
085af13 Merge pull request #1531 from lcosmin/master
d4fb254 Merge pull request #1532 from ryanneufeld/torrent_tools
631da35 Merge pull request #1537 from everbird/master
4d01d79 Merge pull request #1540 from goofansu/add-rebar-plugin
d8e700c Merge pull request #1651 from deepusudhakar/master
f2a927f Merge pull request #1696 from henryyan/master
41180bf Merge pull request #1700 from Bercio/master
6a5afc1 Merge pull request #1701 from mbauhardt/copydir
459e7ff Merge pull request #1706 from keyvez/master
2a0c1d7 Merge pull request #1711 from bertabus/master
c50b9a2 Added Vundle clean to remove bundles removed from vimrc
0c9b432 Support for Sublime Text 3
c3b20a6 Use completions with django-admin.py
872ef08 Add collectstatic to django command completions
32a42f2 Escape spaces in folder name so script won't fail
c8db4f8 Add alias for 'hg bookmarks'
2bae7ef  initial support for chef 11 integrated knife-essentials
0854b18 a plugin (function) which copies the content of a file into the clipboard
9c6b886 a plugin (function) which copies the current directory into the clipboard
0198a12 Merge pull request #1699 from Bercio/patch-1
4300b63 Merge pull request #1689 from afh/pull/emoji_clock
6b6208e >! doesn't work with no clobber, echo is redundant. Fixed all.
58a6ed1 "$PWD" = "PWD", >! doesn't work, echo is redundant. Fixed all.
9af2295 Add emoji-clock plugin
989b6ec Merge pull request #1208 from jaischeema/master
b68db6e Merge pull request #1060 from danielbayerlein/new-theme-inspired-by-peepcode
7e046d3 Merge pull request #729 from doitian/plugin_tmuxinator
b2421cc 005d967dc4e879f304607a706ccd18886e630dc1
b572842 Merge pull request #1632 from jmatth/tmux_plugin
2d0c9e7 Merge pull request #1652 from z2v/master
cd55560 Merge pull request #1654 from bertag/parse-git-dirty-support-for-1.6
dda1154 Merge pull request #1655 from nubs/phing-and-cache-files
e041b50 Merge pull request #1656 from hacfi/patch-2
037b691 Merge pull request #1665 from bmcorser/patch-1
2606772 Merge pull request #1679 from KokaKiwi/master
3726c49 Merge pull request #1680 from zbrox/master
eadca72 Merge pull request #1681 from akre54/add-bower
0169654 Merge pull request #1685 from justinclayton/patch-1
b95c0e8 Merge pull request #1686 from timsly/hub-autocomplete
3dc073a Merge pull request #1690 from docwhat/git-untracked
601d4d6 Merge pull request #1662 from rylwin/patch-1
ca38406 Merge pull request #1674 from simeonwillbanks/master
77ca980 Merge pull request #1678 from lesmyrmidons/symfony2
1d66bef Merge pull request #1682 from maplebed/ben.knife
b906454 Merge pull request #1691 from gianu/master
397d4ae Merge pull request #1697 from dsx/sublime-plugin-fix
ac0dddb Merge pull request #1698 from ConradIrwin/safe-paste
fc785de +safe-paste plugin
6271941 Prevents echo of _sublime_darwin_paths contents
d55262b Added $PATH to PATH in install shell
c8423eb Removed colors from parenthesis.
0707bfc New theme: Gianu Theme
8890450 This fixes checking for git untracked items
e4fb943 ohmyzsh plugin of the z project: https://github.com/rupa/z
8e368c1 added hub autocomplete instructions
48c0f6c Update _vagrant
520b013 adding docs about knife path config variables
5c1c536 allowing you to override knife paths
f972217 fix some references from npm --> bower.
b7608bf add bower autocompletion
8d6b757 Powify autocomplete
3ad05df Add 'kiwi' theme
af8d8df Add colored man plugin.
55da480 modify alias sfc => sf
fc67399 Simplification name aliases and adding new alias
c89afd2 Fixes #1485 zeus should not be bundled
295bac0 Mercurial: add alias for pull with rebasing
b8b241f Merge pull request #749 from blueyed/setopt-correct
5e7e987 Merge pull request #1657 from ysmood/master
95b46e7 Merge pull request #1658 from kavu/patch-1
d9bf1ad Merge pull request #1659 from AshleyS/master
5cde893 Merge pull request #1661 from hellerbarde/master
4e101be Merge pull request #1558 from sbooob/master
2239035 Merge pull request #1573 from flz/master
9276b5f Merge pull request #1595 from nevir/sublime3-support
6f72d6c Merge pull request #1598 from zasdfgbnm/master
c867684 Merge pull request #1607 from gekken/master
5b7f49e Merge pull request #1610 from mcaserta/scala_and_sbt_plugins
ed69d1e Merge pull request #1611 from ripdog/patch-1
eabf51e Merge pull request #1614 from miklos-martin/bower
a3a6b91 Merge pull request #1616 from sxeraverx/master
d3d3f0e Merge pull request #1524 from bonifaido/master
280c3df Merge pull request #1638 from RomainBelorgey/master
7485924 Merge pull request #1650 from ishtu/master
650bace Merge pull request #1663 from flavius/master
b0d80a0 Merge pull request #1664 from marcel-wolf/master
0b5d983 Merge pull request #1668 from sheerun/patch-1
6a8e79f Merge pull request #1669 from desimone/master
2c06988 Merge pull request #1671 from lifinsky/master
19ae0b5 Exporting path to fixed config as a global variable.
a91872d Prefixing tmux wrapper function with '_'.
5128669 IMPROVED: untracked file status has priority over modified (ie: if you have both modified and untracked files, your prompt will be red indicating the presence of untracked files)
2916ef7 Use new style of rails command.
c1c7768 Fix grails plugin
7c50867 Added golang completion support from golang.org
0ed1ade Use --no-rehash option for faster startup
f7f487c Alias for commit and commit all with amend
2a1c9ff add ssh-agent option to set default lifetime of identities
3826c7b allow setting a custom HISTFILE before oh-my-zsh is loaded
4c8bba5 Fix whitespace
1cfd813 last-working-dir: Use >! to overwrite $cache_file
56e8354 fix git_prompt_status() to not say the repository has untracked files all the time
6c6072c Modified to use full parameter as newer versions of base64 uses lowercase D
7903f51 Fix git dirty status in dallas.zsh-theme
55c6fd5 opt: Optimize the color scheme. Add some basic comments.
4bf174c Autocomplete composer default methods if composer.json is not available
bdf4f5a Allow ":" and "-" characters in phing tasks.
300f94c Use [ -nt ] instead of stat -f%m to check cache files.
0783805 Merge remote-tracking branch 'upstream/master'
a66bc75 add: A new theme 'ys'.
72ec241 Tweaked parse_git_dirty() in lib/git.zsh to support proper dirty/clean parsing against both git 1.6 and git 1.7+
6dd286b Mercurial: add aliases for 'incoming' and 'outgoing' commands
9991401 Escape /Users/desudhak/.oh-my-zsh path (previously broke spaces in path)
49860bd add function vncviwer
0ab0e67 Merge pull request #1645 from mbologna/master
0b6e735 added comment for auto-generated hostname color
c2d42f5 added michelebologna theme
fdd46d8 Updated battery plugin.  Displays charging time.
20fe5e6 Update _capistrano
4bb7b69 Add alias for "composer dump-autoload"
f4b1232 Added rails4 plugin
f0a920d Checking to make sure tmux is actually installed before running plugin.
4e8681c Adding options to choose tmux TERM for 256 and non-256 color terminals.
86c9b32 Adding compdef to maintain tmux completions.
56c46c4 Fixing typo in alias.
691630a Adding option to prevent autostarting tmux more than once in the same session.
f096644 Checking if already in tmux before autostarting in tmux in tmux plugin.
43c50f0 Checking environment instead of local variable for fixing term in tmux plugin.
7b15627 Fixing typos, logic, and gremlins in tmux plugin.
bf40d4e Adding helper tmux config files to tmux plugin.
45a4db3 Enabling autostart of tmux in tmux plugin.
0cf871d Adding comments to tmux plugin.
778ae57 Tmux plugin now just runs tmux if any extra args are given.
3aef679 Now checking for 256 color terminal in tmux plugin.
26ee66f Adding main function and alias to tmux plugin.
b979400 Starting tmux plugin with basic config variables.
8c74d80 Fix Symfony2 command completion 'permission denied'
174e09c Added --quiet to suppress message about gpg-agent already running.
014ed1f Disable ssh-agent support if another ssh-agent is already running.
3db2263 pipe git version check error to /dev/null (for when git doesn't exist)
5eb3ec6 Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
2264c51 Update plugins/extract/extract.plugin.zsh
535fafd SBT and Scala plugins.
fb3dc24 Support for opening tabs and windows in the same This fixed #1498 for me on Mountain Lion
ccdc551 Update plugins/rvm/rvm.plugin.zsh
9245a30 Did a full circle and went back to # On branch master # Changes to be committed: #   (use "git reset HEAD <file>..." to unstage) # #	modified:   git.zsh #, ignoring untracked files, which seems to be the primary cause for slowness
11576dd Fixed dirty check to include files added to index
06d5cb9 new plugin: start fbterm automatically in /dev/tty*
bc00362 Merge remote-tracking branch 'upstream/master'
fce68bb Merge pull request #1594 from jbhannah/rbenv-gems-fix
1a362c1 Merge pull request #1583 from To1ne/pj.plugin
3d81ecf Support for Sublime Text 3, with fallback
dace87a Fix rbenv gems helper
2595484 Merge remote-tracking branch 'upstream/master'
6e6cf43 Merge pull request #1586 from HeroicEric/master
a5a6f6b add alias for rspec to zeus plugin
631a847 added pj.plugin
fe4c237 use pushdminus
ef8e3a6 [agnoster] modifying theme to show dot for dirty files and plus for staged files in git repos
6d762fa Add new profiles plugin.
171a76a Closer to original status command, using SUBMODULE SYNTAX
8a463b6 Better custom theme loading
2e213b9 Faster dirty git status check (using git diff)
4c91f6d Add autoenv plugin, which adopts using Kenneth Reitz's autoenv into oh-my-zsh.
28b7374 ADDED: Mercurial prompt info support even if hg prompt extension is unavailable
8e9cf45 ADDED: Mercurial repository info
615e41b Adding MIT-LICENSE Closes #655
cf03ee6 Merge pull request #1534 from gberenfield/master
312da3e Merge pull request #941 from dcreager/configurable-blinks-theme
9ef7e8a Merge pull request #1077 from Mezzle/add-option-to-show-git-status
a634d50 Merge pull request #1054 from ptillemans/master
64db7b5 Merge pull request #1164 from fuksito/master
ae7bce3 Merge pull request #837 from stacksmashing/master
cd9c474 Update to a better fab compeletion script.
22da0a0 Add rebar to plugin
914c47b Merge remote-tracking branch 'upstream/master'
692dca0 Add new plugin to autocomplete fabric commands
e5736d3 Fixed coding style
df7cae0 moved bower plugin to a separate branch
c5d575c cleaned up
93c90a6 Fix the fix for Issue #1479
003dd8f fix for Issue 1479
587832f Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
3362899 Adding torrent tools plugin.
80a6032 Merge pull request #1510 from agnoster/agnoster-classic
07c19b6 Merge pull request #1517 from thisiskun/master
c5ecb4e Fixes #1489
fa355a7 Fixed issue with NetBSD's ls
6ce08ac added support for subversion 1.7 for svn plugin
1f4bb8d OpenBSD doesn't have -ef flags for ps. Both linux and OpenBSD have -x flags which works just as greate here
021e6de added crcandy theme
d0842b4 Fix gitfast problem for untracket files
dde4a8b Maven plugin completion fix for other (than Java) JVM languages
a09cd71 add unbundled command
e4624c6 Revert "agnoster theme shows error code instead of an "x""
55f09f8 Added `verisions` option for `homebrew` completion
397c085 Merge pull request #1473 from bsteuber/fix-git-flow-feature-completion
bc7157b Merge pull request #1475 from westonplatter/master
d8162cd Merge pull request #1477 from madsgraphics/git_prompt_showstashstate
b9a989f Add Stash toogle to display if there's some stash or not in `git_prompt_status`
f3fea45 fixes #1474 add zeus to bundle exec listx
1b91c84 use feature names instead of failing branch names in "git flow feature"
6d7a275 Merge pull request #1084 from avit/bwana-plugin
046fc5a Merge pull request #1133 from mappleconfusers/605ad8725b06cc15f8523404f59060b6a71bb7a2
083da66 Merge pull request #1139 from mappleconfusers/pull_req_git
ed5d2ff Merge pull request #1233 from mugenken/knife-check-cwd
dc2558c Merge pull request #1467 from timothyandrew/patch-1
4154ecc Merge pull request #1468 from larrylv/unset-config-file-variable
6c5e630 Unset `config_file` variable in oh-my-zsh.sh
f7fc164 Added a `migrate` alias.
178bce2 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
0118b5b Merge pull request #1248 from grahamc/add-symfony
78e3f38 Merge pull request #1258 from caio/git-branch-status
d100354 Merge pull request #778 from rschmukler/plugin-osx
462136a Merge pull request #794 from markdrago/cloud_parameter
5aed0ae Merge pull request #875 from ttddyy/prompt_git-remove
d88fad3 Merge pull request #880 from darrenclark/fix-mac-terminal-app-echo-issue
24188fd Merge pull request #1181 from paulmars/master
dbeb74e Merge pull request #1189 from petemounce/yum-quote
5f41ecd Merge pull request #1186 from r-darwish/history
bd9a860 Merge pull request #1247 from drnic/git-cmds
421a738 Merge pull request #1273 from ystein/master
63deae3 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
868a513 Resolving conflict in merge of #1313
3199d2e Merge pull request #1387 from jimhester/vi-mode-patch
43ca5d8 Merge pull request #1458 from ranman/master
9ae1289 Merge pull request #1454 from gAmUssA/patch-4
b204ce8 Merge pull request #1462 from aliasbind/master
26b3e10 Merge pull request #1460 from tresni/patch-4
2f0717c Merge pull request #1459 from tresni/patch-3
1ad2104 Merge pull request #1463 from syphar/fix_last_working_dir
8925cff Fix prompt color: Change it back to green
98bd19a plugin last-working-dir: create cache-directory if it doesn't exist
e096e40 Print last exit status in mortalscumbag prompt
80f151e urltools for Everyone
39e5c9a Backwards Compatible Jira URLs #1378
b9d5a39 use lazy load for virtualenvwrapper
51e05b7 hg_current_branch added to mercurial plugin
5193a1d Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
f8343b0 Merge pull request #1457 from NeuralSandwich/master
13998bb Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
dfbafe6 Fixing conflict in install scripts
fcc8b19 Merge pull request #1328 from mfoo/master
228c3fc Merge pull request #1301 from bencao/master
ef4e2aa Merge pull request #1293 from cenkalti/master
fdf3a39 Merge pull request #1295 from XL64/master
1f28407 Merge pull request #1298 from nickhutchinson/fishy
ce20cba Merge pull request #1382 from fushunpoon/master
d19e01b Merge pull request #1191 from r-darwish/themes-plugin
275e7cb Merge pull request #1235 from henryyan/master
4cad0a4 Merge pull request #1241 from agrimaldi/git-extras
127a47b Merge pull request #1249 from korjavin/aptitude
aa382b5 Merge pull request #1255 from SuprDewd/master
e89f950 Merge pull request #1256 from seegno/master
96f35e6 Merge pull request #1259 from bwl/sublime-fix
9977afc Merge pull request #1263 from tedv/headless-git
2e5a689 Merge pull request #1265 from aletessier/ssh-completion
ac90eed Merge pull request #1274 from sc68cal/feature/git_decorate_log
215d6da Merge pull request #1277 from waveface/master
44edb3e Merge pull request #1278 from bitboxer/forklift
5991bf3 Fixed Kernel Detection in battery plugin
f28041e Merge pull request #1284 from obmarg/feature/debianwhichfix
66df0f8 Merge pull request #1317 from thcipriani/junkfood_theme
245eee1 Merge pull request #1319 from skatkov/master
93f41fc Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
fe09471 resolving conflict in termsupport plugin
04d0857 Merge pull request #1336 from aelesbao/plugin-systemd
b2b77be Merge pull request #1341 from markusscherer/master
e10552b Merge pull request #1354 from F30/master
5ed75de Merge pull request #1353 from a-b/master
7004ac9 Merge pull request #1371 from rdrey/master
d5eddc6 Merge pull request #1376 from javageek/master
71af4d7 Merge pull request #1375 from dsx/better-pyclean
dad9352 Merge pull request #1378 from hjhart/master
1417111 Merge pull request #1453 from simonoff/master
d3b867d Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
ab13d07 git find
badc3eb Merge pull request #431 from meh/rsync-plugin
423d66d Merge pull request #409 from Bregor/patch-1
c64c30c Merge pull request #214 from allancaffee/master
4fea3ce Merge pull request #1455 from NeuralSandwich/master
e477085 Merge pull request #1456 from sputnikus/master
11ff3b6 Removing mcd as it conflicts with mtools
ef5a65b Renaming cap to capistrano
8fe6ea3 Functions for managing pacman-key
56f0948 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
5f62d2c Added Candy-Kingdom theme
80ab595 Merge pull request #256 from lorrin/no-op_command-not-found
77e4c1c Merge pull request #253 from loopj/master
e226fc0 Added support for Mac to battery plugin
54f1990 Update plugins/sublime/sublime.plugin.zsh
e4a596c Merge pull request #516 from adben/master
27841ca Set default for rvm prompt prefix/suffix
30687c4 Fix RVM loading and RVM ruby version info
f9de644 Simonoff theme
8796fd0 Merge pull request #455 from aslamnd/master
08cb82b Merge pull request #448 from n0nick/patch-1
7dfd640 Merge pull request #1451 from rmcastil/modify_readme_to_clarify_the_manual_way
31ad213 Merge pull request #1452 from miry/github
f29daef Fix repo for github.
60c3813 Make the NOTE an optional for improved instructions
5b20146 Improve formatting of step 2 for clarity
22f827e Merge pull request #1393 from agate/patch-2
2e55825 Merge pull request #1365 from pcasaretto/add-heroku-remote-switch
b8e2302 Merge pull request #1366 from op/last-working-dir
9a88e76 Merge pull request #1370 from ericmathison/syntax-fix
f9c1a72 Merge pull request #1347 from paulredmond/plugin/jira
aad58af Merge pull request #1386 from sanbor/master
e3b97db Merge pull request #1390 from pluton8/bugfix/autojump21
2aa485a Merge pull request #1435 from Drarok/fix-svn
3657bf8 Merge pull request #1421 from cristim/master
25a2f02 Merge pull request #1399 from tresni/patch-1
08efdcd Merge pull request #1400 from tresni/patch-2
66e784c Merge pull request #1416 from talmuth/master
26d4654 Merge pull request #1410 from jimhester/per-directory-history
ddb8d46 Merge pull request #1411 from niceview/rvm
f2050fc Merge pull request #1413 from arnihermann/master
29b66b8 Merge pull request #1412 from jdavis/coffee_plugin
5189cb8 Merge pull request #1418 from Mehonoshin/patch-2
bc1a06a Merge pull request #1419 from ssrihari/master
293a65c Merge pull request #1439 from maxbane/master
3dc1d92 Merge pull request #1442 from willman500/git-hub-flow-plugin
f69b05b Merge pull request #1445 from knxroot/master
ded745b Modifying documentation in zshrc template for new config option
533a281 Merge pull request #1430 from danielsoneg/egd-update_frequency
8a2314e Merge pull request #1437 from Partyschaum/master
067178d Merge pull request #1446 from suzaku/patch-1
263107e fix typo
3b6fae1 Node.js version of urltools es more fast (53% aprox), you can try this with strace -o trace -c -Ttt
1b4393f Add autocomplete for git "hubflow"
5c98325 fixed autojump: autocompletion works with homebrew again
12f416b Merge branch 'master' of github.com:Partyschaum/oh-my-zsh
5d6252c fixed autojump plugin: works with homebrew again now
5385475 Revert "Fix to restore bindings after switching to vi-mode"
3d76228 fixed symbolic-ref git view of agnoster theme
7fc612b removed 'x' from prompt_context() function name
120db35 Fix the backwards svn status, and add comments explaining which way grep does things.
79e620c Whitespace cleanup.
200a258 Add UPDATE_ZSH_DAYS setting
d750e7d Merge pull request #1426 from caarlos0/master
75e5a6d fixes my wrong commit - fixes #1423
6fbe594 Merge pull request #1391 from logicmd/master
03c2712 Merge pull request #1388 from fuadsaud/agnoster_theme_show_exit_status
aaca1c2 Merge pull request #1395 from caarlos0/master
802c2df Merge pull request #1406 from chinghanho/master
a5bc97f Merge pull request #1404 from Bklyn/master
1b4a23a Merge pull request #1396 from webframp/fix/brew-autojump-zsh
63cd6ef Merge pull request #1415 from jmatth/git_root_pull
fdfc0b3 Merge pull request #1417 from felipec/fc-git-upstream
7c76854 Added a small mod of the tjkirch theme
b2b5e3a Added alias to rake db:test:prepare
7991562 Added gwc(git whatchanged alias)
5a11228 Add gifast plugin
5ff4a00 e alias
60b7dd8 fixing various issues with build, add runinstall option
a366456 fixing some build issues...
af729cc Add support of screen-* $TERM in screen plugin
2acd30e fixing issue with solr in jboss start
9b1c64d go
89614be param -i para gerar installer
50e538a oops
72974ce totvs utils
7be660b Adding grt alias to the git plugin.
003b0da Use pull --rebase for 'gup' shortcut.
6c45d21 Added host to prompt
6f6a3c8 Added sf Symfony2 binary alias
4c96e53 Added a CoffeeScript plugin.
7d9518d Use rvm completion from ~/.rvm/scripts/zsh/Completion
9ba7991 Replace reset-prompt with push-line and accept-line
5b2ca38 Improved statistics functions, effect:
91c57e6 Untabify
f2ac088 Handle metachars in svn status output using grep -q
1b768a3 Update plugins/svn/svn.plugin.zsh
99468cb Update themes/minimal.zsh-theme
8871c7a made dpkg -i more util
f967f2b update autojump plugin for latest brew installed autojump
8723a2c mvn.colors.plugin.zsh was not read... mergin with mvn.plugin.zsh.
15e0dc9 Added some maven love.
ec9b550 Update plugins/git-flow/git-flow.plugin.zsh
19aefa2 Update plugins/sublime/sublime.plugin.zsh
cd0e7c5 Fix sourcing brew's autojump of version 21.0.3+
f09af57 agnoster theme shows error code instead of an "x"
4e513d7 Fixes for vi-mode terminal overwriting bugs
15563c1 Added pass plugin in order to provide completion.
263446d Expand for-loop so that it works under Snow Leopard Terminal.app.
1c9f2e8 Update plugins/jira/jira.plugin.zsh
4d8fe54 Updated code from answer URL
c592f55 Added ability to specify list of directories for pyclean to override default current directory
7e2156a Fixed node-docs
b0cf067 Fix color syntax
91e5619 Added last working directory plugin
c2cbd31 Add the heroku --remote switch
2fa0262 add git-extras plugin
3ad138a Merge remote-tracking branch 'upstream/master'
daa6ece Set the '-R' option for less not in $PAGER, but as $LESS.
8f7b126 updated symbol
55cc936 Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
53412de Something to be said for symmetry
5872dae spacing makes me something
2ba668b parens tweak
bb5db62 removed weird characters
8d86bb2 moved spacing
af21abb Wrong URL ⚡
c2ae9e0 Merge pull request #1344 from danielcsgomes/master
d4d2e6d Merge pull request #1306 from josh-/master
6d4b0c6 Merge pull request #1312 from koenpunt/fixes_cap_plugin
c5a8905 Merge pull request #1330 from trobrock/hide-rvm-prompt
3d43861 Merge pull request #1333 from b4mboo/master
8a8b821 Merge pull request #1335 from paulredmond/plugin/jira
9ba2ab3 Merge pull request #1346 from ianchesal/urltools
a0bcbfb make README reflect latest changes
a97e117 URL Tools Plugin
ef96b6c Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
9365fd0 added a comment to the composer installation alias
6630919 added Composer completition and aliases
e3de97c added two aliases to Symfony2 Plugin
43bd46b fix title setting bug in xterm and urxvt
b932312 fix test aliases
9acfaee Missing comment line
58d904a Added systemd plugin with aliases for systemctl commands.
b7383b0 look for test/unit instead of test/units. #typo
b559f2f Correct error message.
73f7770 Merge pull request #1327 from agnoster/master
2d66016 Clean up doc
2bbe6ab Jira ticket shortcut to browse existing issues or create a new issue.
2365784 Merge remote-tracking branch 'upstream/master'
c7c647d Add zeus plugin
a7fb668 Make rvm prompt function a bit cleaner
3d1b788 Fixing the rvm_prompt_info command, now it will not show empty parens if no rvm is currently being used
5e0fd9b Add user-local installation autojump zsh plugin source
b207792 Add link to gist
6e85ff5 Updated documentation for agnoster theme
25a9cdd Merge pull request #1318 from trobrock/add-puma-to-bundler
8247a40 Merge pull request #1320 from jimhester/vi-mode-patch
523b26c Merge pull request #1321 from jimhester/per-directory-history
5f16ede Merge pull request #1322 from jimhester/colemak
8c2145f Merge pull request #1323 from lxmonk/autojump-port
cc83150 Use HISTFILE evironment variable directly rather than copying it
7284e6b added autojump plugin support for mac os x + port
00bff0a Red prompt for remote hosts
aeadd73 Colemak plugin
baa187e Per directory history plugin
b609aa0 Fix to restore bindings after switching to vi-mode
8ecc252 Last spacing adjustment...I swear
9510eb0 Modified spacing one last time
55c6901 Replace cp verbose with rsync
8510ac0 Bundle exec puma also http://puma.io
a8d4260 modified spacing on junkfood theme
b534b38 Added fat arrow the theme
bf41575 Refactored theme
00e1199 Added space to prompt
11a4c67 Added junkfood theme
28d28ee git plugin: Add `gpoat` alias
b11e289 Add agnoster.zsh-theme
9a4fac1 fixed incorrect if/else
8d60a0c updated cap plugin to use `cap -T` instead of `cap show_tasks` which didn't exist (sometimes?)
ce74be1 Merge remote-tracking branch 'upstream/master'
08f4d8b fixed nginx vhost template, made variables local, imroved parameter validation
6c13721 Merge remote-tracking branch 'upstream/master'
9130324 added lesscss plugin
061a4c0 Add new 'nanoc' plugin
cfeb570 Nuke _cap_does_task_list_need_generating
fa859f9 fix rvm auto complete, pointing to $rvm_path
3ef82a9 nginx and php-fpm plugins
2643ac9 Update fishy theme to collapse working directory in PROMPT.
921d2f4 Merge pull request #1228 from clutt0n/master
c27183a Merge pull request #1287 from johnhamelink/master
a0430a0 Merge pull request #1279 from 3den/master
633ad0e Merge pull request #1297 from everbird/master
fbf82ae add new plugin to autocomplete supervisor commands
28d3b80 Add empty function rbenv_prompt_info() if doesn't exists
d5e5b7e search virtualenvwrapper.sh in PATH
6f92745 Added another path for virtualenvwrapper plugin
f995218 Add keep branch option.
b2c1af9 Added laravel plugin which gives aliases to artisan and bob, and provides autocompletion for artisan.
d3f6507 Debian plugin now pipes which stderr to stdout
76f2429 new 3den theme with RVM and GIT
370dbe4 Merge branch 'master' of github.com:ptillemans/oh-my-zsh
36b4201 new forklift plugin
1a6d11d Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
74faabb Add shortcut for showing log of all branches
9172b3a fix typo in cd-wrapper
9af7f86 Correct variable used for global ssh known host completion
027fccc Make git use sha when branch name is missing.
a3c2a2f Add branch status support to git_prompt_status
aaf705c Adding logic for ~/Applications folder installs of Sublime Text 2
682961e Add a configuration option to disable autocorrect
75029cd Added a "please" alias for sudo
e709642 Merge branch 'master', remote-tracking branch 'rr/master'
9ee4b9c Added go completion script. Taken from /misc/zsh/go
a8d7958 alias at=aptitude broke /usr/bin/at scheduler. Just an idea: change it to ap
772bc51 Merge
decb9c8 delete os specific disable-patterns
61e708f Adding a symfony plugin, for symfony 1
d5bfbf0 improvement: define PROMPT_HOST once on startup
73df0c8 added 'gcl'for 'git config --list'; and gd for 'git diff'
1e1e0fa Fix changelog --list completion bug
46b88b6 Added credits
0b75782 Added git-extras completion
3fea7c3 Added avit theme
98ecfa4 Bwana plugin for reading man pages in Safari
3fe1e5c add maven zsh autocomplete plugin, copy from juvenxu's bash maven autocomplete plugin
bb34abd check for knife.rb in cwd
4a11d2c merge from upstream master
6756be7 Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
6a2e04f modify themes/jnrowe.zsh-theme, add host directive "Ξ (mbsd) ~ →"
5001412 vagrant uses 'ssh-config' command, not 'ssh_config'
0b2da8f Add very basic virtualenv plugin
8d60f9a Fix the rvm gemset right prompt:wq
c23392a Add new theme : jaischeema
8d23a36 Merge branch 'master' of github.com:essembeh/oh-my-zsh
18cb119 Comment l alias
cc98254 Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
29fb244 Merge remote-tracking branch 'upstream/master'
f7b1615 Added completion to the theme selection plugin
5e9a16b Added themes plugin
62a436b Fix mismatched quote in yum plugin
8ba97c3 Added history plugin
8088e8a add git remote branch autocomplete
8b69c7f Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
43c0921 More usable and shorter aliases
3f42fd0 Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
579f33d Merge remote branch 'upstream/master'
ce4431a Added spin to bundled_commands (Bundler plugin)
3dd3c1f Add aliases for git-remote: gr...
a1a1f45 Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
79847ad added 'gcl'for 'git config --list'; and gd for 'git diff'
7fd1bf5 Fix formatting
6f4c69c Add instructions on handling updates and prompts.
8ce35df Add option to disable status notification
741388b Merge remote branch 'upstream/master'
8942d30 Add Theme "itchy"
9b05a44 Adds glo; glp (arg)
dc30743 Added subcommands for leiningen 1.7.0
0b70b6d small changes to make it prettier
a75aaba add the half-life theme based on steeef and lambda
e9feccf add maven plugin
605ad87 Add a cat smilie as alias for cat
814ecfc delete time filed
7ffc3e7 change color of @ to cyan
bd4f1ee add hostname behind username, example: henryyan [02:07:20]  ~/.oh-my-zsh git:(master) ✗
c1e9d92 move kafeitu.zsh-theme to themes folder
09c5996 Added kafeitu theme it modified by robbyrussell
4e0b5be Fix spurious correction with sudo vim
8f8767a blinks theme works with light and dark Solarized
b62a3e8 handle case where ~/.rvm/bin/rvm-prompt is not in path, so "which" can't find it
fbf5b0e add default rbenv_prompt_info implementation to close #878
72aeaa9 added "publish" and "track" command completion for git-flow plugin
8f89d4d Fixed Mac OS X Terminal.app related issue with extra newlines being printed out sometimes
52733cb prompt git-remove as deleted
49d44ad Fixed compdef alias to use 'gd' as shortcut.
78a129c Correct color and font issues on Ubuntu
54a30c4 sprunge-plugin: Remove the unnecessary while loop.
6040d72 Fix the behaviour of the sprunge plugin so that is preserves whitespaces and tabs.
dafef0b Merge branch 'master' into cloud_parameter
730e029 Added alias for git diff.
95971a2 Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh into cloud_parameter
e3c34b4 add ability to set custom prefix for cloud theme
4a813cf Added vsplit_tab and split_tab for iTerm. Create new session within a vertical/horizontal split of the tab respectively.
70e5118 Only `setopt correct`, not "correct_all".
3726611 Merge remote branch 'upstream/master'
30890b9 Fixes and improves the behavior of the tm command
9969fca Merge remote branch 'upstream/master'
20b025b tmuxinator completion
8e6ce53 Update theme
c4434d2 Update completion for SSH
914e1b5 Adding custom theme
ebbead8 RVM info
878d569 FrontCube theme with git status
efa5593 Rename to _capistrano (completion only)
0061dda Add bundle open alias, which open gem using EDITOR var
3bc32ee add theme with command-line tips support
0ba398f Merge in recent stuff
1d17502 rsync: add rsync- prefixes and use aliases
b727e33 Updated the frisk theme to display Bazaar branch information as well (based on zedtux.zsh-theme http://j.mp/ikTZJj)
c5a01fe rsync: add plugin
6c95c4b use /home/ryan/d/.oh-my-zsh instead of ~/.oh-my-zsh for cache
b02094e Change plugin name from cap to capistrano
f045119 Dollar sign instead of percent in unprivileged user prompt (as in real gentoo)
25adbe8 Aliases
3b8f654 Fixed cap plugin
e8a7a31 Make command-not-found no-op when support not available (e.g. not on Ubuntu)
a15a8c4 New theme 'intheloop' which demonstrates the git_remote_status function
2d5412e Added new function git_remote_status to check if we are ahead, behind or diverged from the remote branch
8aec32b Add vagrant completion for individual VMs

git-subtree-dir: oh-my-zsh
git-subtree-split: 2dc566f69bd79736397e17fb08c9ab947f055365
nsfmc pushed a commit to nsfmc/oh-my-zsh that referenced this pull request Nov 30, 2013
nsfmc pushed a commit to nsfmc/oh-my-zsh that referenced this pull request Nov 30, 2013
hughdbrown pushed a commit to hughdbrown/oh-my-zsh that referenced this pull request Dec 6, 2013
hughdbrown pushed a commit to hughdbrown/oh-my-zsh that referenced this pull request Dec 6, 2013
hughdbrown pushed a commit to hughdbrown/oh-my-zsh that referenced this pull request Dec 6, 2013
Add jump plugin, which allows you to easily jump around the file system
arowla pushed a commit to arowla/oh-my-zsh that referenced this pull request May 28, 2014
arowla pushed a commit to arowla/oh-my-zsh that referenced this pull request May 28, 2014
kenton pushed a commit to kenton/oh-my-zsh that referenced this pull request Jan 9, 2015
kenton pushed a commit to kenton/oh-my-zsh that referenced this pull request Jan 9, 2015
mcornella added a commit that referenced this pull request Feb 11, 2020
- Fixes `readlink -e` dependency which isn't supported in macOS
  (fixes #3235).
- Uses native zsh wildcard expansion instead of calls to `ls`.
- Prepends commands with `command` and `builtin` to bypass aliases
  and functions.
- Documents CTRL+G key binding to substitute mark name in the command
  line with the mark path (#2045 (comment)).
monological pushed a commit to monological/oh-my-zsh that referenced this pull request Feb 23, 2020
- Fixes `readlink -e` dependency which isn't supported in macOS
  (fixes #3235).
- Uses native zsh wildcard expansion instead of calls to `ls`.
- Prepends commands with `command` and `builtin` to bypass aliases
  and functions.
- Documents CTRL+G key binding to substitute mark name in the command
  line with the mark path (ohmyzsh/ohmyzsh#2045 (comment)).
emcrisostomo pushed a commit to emcrisostomo/oh-my-zsh that referenced this pull request Feb 27, 2020
- Fixes `readlink -e` dependency which isn't supported in macOS
  (fixes ohmyzsh#3235).
- Uses native zsh wildcard expansion instead of calls to `ls`.
- Prepends commands with `command` and `builtin` to bypass aliases
  and functions.
- Documents CTRL+G key binding to substitute mark name in the command
  line with the mark path (ohmyzsh#2045 (comment)).
brechetp pushed a commit to brechetp/ohmyzsh that referenced this pull request Mar 31, 2020
- Fixes `readlink -e` dependency which isn't supported in macOS
  (fixes ohmyzsh#3235).
- Uses native zsh wildcard expansion instead of calls to `ls`.
- Prepends commands with `command` and `builtin` to bypass aliases
  and functions.
- Documents CTRL+G key binding to substitute mark name in the command
  line with the mark path (ohmyzsh#2045 (comment)).
dukegod pushed a commit to dukegod/oh-my-zsh that referenced this pull request May 9, 2020
- Fixes `readlink -e` dependency which isn't supported in macOS
  (fixes ohmyzsh#3235).
- Uses native zsh wildcard expansion instead of calls to `ls`.
- Prepends commands with `command` and `builtin` to bypass aliases
  and functions.
- Documents CTRL+G key binding to substitute mark name in the command
  line with the mark path (ohmyzsh#2045 (comment)).
spiliopoulos pushed a commit to spiliopoulos/zsh-config that referenced this pull request Jun 17, 2020
- Fixes `readlink -e` dependency which isn't supported in macOS
  (fixes ohmyzsh#3235).
- Uses native zsh wildcard expansion instead of calls to `ls`.
- Prepends commands with `command` and `builtin` to bypass aliases
  and functions.
- Documents CTRL+G key binding to substitute mark name in the command
  line with the mark path (ohmyzsh#2045 (comment)).
lparam pushed a commit to lparam/oh-my-zsh that referenced this pull request Jul 27, 2020
- Fixes `readlink -e` dependency which isn't supported in macOS
  (fixes ohmyzsh#3235).
- Uses native zsh wildcard expansion instead of calls to `ls`.
- Prepends commands with `command` and `builtin` to bypass aliases
  and functions.
- Documents CTRL+G key binding to substitute mark name in the command
  line with the mark path (ohmyzsh#2045 (comment)).
crdant pushed a commit to crdant/oh-my-zsh-custom that referenced this pull request Dec 30, 2020
- Fixes `readlink -e` dependency which isn't supported in macOS
  (fixes #3235).
- Uses native zsh wildcard expansion instead of calls to `ls`.
- Prepends commands with `command` and `builtin` to bypass aliases
  and functions.
- Documents CTRL+G key binding to substitute mark name in the command
  line with the mark path (ohmyzsh/ohmyzsh#2045 (comment)).
tekniklr pushed a commit to tekniklr/oh-my-zsh that referenced this pull request Sep 6, 2022
- Fixes `readlink -e` dependency which isn't supported in macOS
  (fixes ohmyzsh#3235).
- Uses native zsh wildcard expansion instead of calls to `ls`.
- Prepends commands with `command` and `builtin` to bypass aliases
  and functions.
- Documents CTRL+G key binding to substitute mark name in the command
  line with the mark path (ohmyzsh#2045 (comment)).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet