Sven Lito
4a256a7281
more tweaks
2010-11-19 19:32:08 +00:00
Sven Lito
84a6bc92d4
clean up
2010-11-19 19:31:46 +00:00
Sven Lito
1af973468d
tabs to spaces
2010-11-19 19:31:25 +00:00
Tobias Ford
30c7d3dc2d
added some good completions for rvm
2010-11-20 03:23:52 +08:00
Fedyashev Nikita
0d8e8609bb
improved formatting; redundant attributes deleted
2010-11-20 03:22:37 +08:00
Fedyashev Nikita
b51d43854b
fixed formatting; dead code deleted
2010-11-20 03:22:25 +08:00
Fedyashev Nikita
aaa0daf614
vagrant plugin autocompletion - initial version
2010-11-20 03:22:14 +08:00
Ubiratan Pires Alberton
6c094c2510
Added my own theme, based on macovsky-ruby and funky
2010-11-20 03:21:56 +08:00
Claus Witt
47504d3d1d
Added phing plugin
2010-11-20 03:21:56 +08:00
gwjo
ae48577d10
Completion fixes
...
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-11-20 03:21:56 +08:00
Tom Stuart
8d6bc551e3
Fix lighthouse plugin error message
2010-11-20 03:21:56 +08:00
Joseph Jon Booker
e72b6731ae
command-not-found package in ubuntu
2010-11-20 03:21:55 +08:00
Trabian Developer
4c105b80dc
Added Zendesk plugin for opening help desk tickets
...
Modeled after the Lighthouse plugin but without the need for project-specific URLs.
2010-11-20 03:18:37 +08:00
Aziz Light
23e5e83280
automatically remove duplicates from these arrays
2010-11-20 03:14:13 +08:00
Aziz Light
fd71de112d
Wrapped git in hub, if hub is available.
2010-11-20 03:12:42 +08:00
ramen
fe86d62c04
Alt-Enter to run in background
2010-11-20 03:09:03 +08:00
Sven Lito
65ceacd060
adding resty plugin http://github.com/micha/resty/
2010-10-12 21:05:27 +01:00
Sven Lito
ec5339293b
moving git-flow plugin into folder for consitency
2010-10-12 20:54:56 +01:00
Alessandro Ghedini
490c6d0f59
Added lol plugin
2010-10-13 03:52:40 +08:00
Wilkes Joiner
49422e3c36
added git-flow
2010-10-13 03:51:00 +08:00
Sven Lito
2bbb2a6a4f
added OS X finder function
2010-10-12 20:11:59 +01:00
Sven Lito
dd43a3effc
added mac keybinding
2010-10-12 20:02:04 +01:00
Sven Lito
e05b8c9caf
added git log with graph
2010-10-11 02:43:51 +01:00
Mike Prentice
bcad29faf4
changed git symbolic-ref to git rev-parse in lib/git
2010-10-11 09:35:10 +08:00
Mike Prentice
1956510a07
added custom/screen.zsh
2010-10-11 09:35:08 +08:00
Sven Lito
e5e032fa17
adding git svn aliases
2010-10-09 23:09:42 +01:00
Sven Lito
df29411154
cleaning up EOF
2010-10-09 23:09:19 +01:00
Sven Lito
dc12853b0c
merging in changes from robby's repo
2010-10-09 19:11:07 +01:00
Sven Lito
8bef74081e
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
2010-10-09 18:56:51 +01:00
Sven Lito
425b0ef89f
bugfix - moved gem info
2010-10-09 18:38:01 +01:00
Robby Russell
df126ef5ba
Merge branch 'master' of http://github.com/svnlto/oh-my-zsh into svnlto-master
2010-10-09 10:06:49 -07:00
Robby Russell
d1c8ef46e0
Merge branch 'master' of http://github.com/philtr/oh-my-zsh into philtr-master
2010-10-09 09:58:20 -07:00
Robby Russell
69e611e2a9
Merge branch 'philips-theme' of http://github.com/philips/oh-my-zsh into philips-philips-theme
2010-10-09 09:57:37 -07:00
Robby Russell
7ab4d30fe1
Merge branch 'title-fix' of http://github.com/philips/oh-my-zsh into philips-title-fix
2010-10-09 09:55:52 -07:00
Irakli Gozalishvili
061ea5c7c9
changeing unicode characters that were causing issues
2010-10-09 18:06:00 +02:00
Sven Lito
210c76c35b
leaving out subcommands for now
2010-10-09 15:29:28 +01:00
Sven Lito
fcd88edfb3
adding comment and URL to github gem
2010-10-09 15:18:35 +01:00
Sven Lito
dfbed8fd98
added git log incl. stats for the past 5 commits
2010-10-09 15:03:08 +01:00
Sven Lito
249fe1471c
adding github plugin
2010-10-09 14:29:24 +01:00
Brandon Philips
df1e305736
themes: add philips theme
...
Theme based on clean that is more suitable for white background
terminals.
Signed-off-by: Brandon Philips <brandon@ifup.org>
2010-10-08 22:59:22 -07:00
Brandon Philips
aab235f612
functions: fix title() to not match any $TERM
...
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-08 22:55:09 -07:00
Irakli Gozalishvili
deb0f7478b
Fixing some minor redrew issue
2010-10-09 02:16:10 +02:00
Irakli Gozalishvili
b6dde1e8cf
Adding new gozilla theme
2010-10-09 01:49:35 +02:00
Irakli Gozalishvili
8059c0727a
Improving git plugin so it can display much more data.
2010-10-09 01:48:23 +02:00
Phillip Ridlen
d53d0eac07
Add cloud.zsh-theme
2010-10-05 17:06:08 -05:00
Jake Bell
541da0c9d1
Removing capistrano aliases/functions from rails plugin (since cap is not rails-specific).
2010-10-01 14:15:52 -05:00
Luke Randall
a4afcfddbf
Add lukerandall.zsh-theme
2010-10-01 06:29:34 -07:00
Daniel Schauenberg
7936bbbd5a
adapt brew,gem,pip plugin to new structure
2010-10-01 10:59:48 +02:00
Daniel Schauenberg
d340bfab33
Merge remote branch 'origin/master' into restructure_plugins
2010-10-01 10:55:44 +02:00
Robby Russell
26d97a9355
Reorganizing plugins so that each plugin has it's own directory now so that any plugin-specific functions can be bundled within there.
2010-09-30 21:34:06 -07:00