Colin Hebert
213b57ee6f
Replace the pmine function with an alias
13 years ago
Sorin Ionescu
b47b845b13
Move history-stat from utility into history
13 years ago
Sorin Ionescu
e2859daba4
[ #23 ] Prevent errors when completion is disabled
13 years ago
Sorin Ionescu
73478bd190
[ #23 ] Convert utility into a module
13 years ago
Colin Hebert
dd0083f11a
Read the entire history in history-stat
...
By default history acts like 'fc -l', which only gives the last 16
entries of the history.
13 years ago
Sorin Ionescu
6a9a4ea8d6
[ Fix #60 ] Do not use parentheses in function names
13 years ago
Sorin Ionescu
b96bbca51c
Added or edited file headers.
13 years ago
Sorin Ionescu
60f39d8d91
Moved hub into the git plugin.
13 years ago
Sorin Ionescu
faeca82831
The functions directory should only hold functions.
13 years ago
Sorin Ionescu
3c273c4ce7
Added slit, duh functions and comments.
14 years ago
Sorin Ionescu
3fd9cf9f86
Renamed lib/ to functions/ and renamed files inside of it.
14 years ago
Sorin Ionescu
94ab5e0ec8
Cleaned up lib/ and removed trailing white space everywhere.
...
Conflicts:
oh-my-zsh.sh
14 years ago
Sorin Ionescu
ad9db8d342
Removed tools I have never used nor will I ever use.
...
Conflicts:
oh-my-zsh.sh
tools/install.sh
tools/upgrade.sh
14 years ago
Sorin Ionescu
ec4f279445
Merged custom/ and lib/.
...
Conflicts:
custom/aliases.zsh
custom/functions.zsh
custom/grep.zsh
14 years ago
Sorin Ionescu
9ded21d21b
Added extract plugin.
14 years ago
Renaud (Nel) Morvan
da8b3f0010
Refactor window and tab title in tty
...
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)
14 years ago
Lorenzo Manacorda
ea88855e5b
add missing unrar flag
14 years ago
Robin Ramael
33bb6e797e
Added an option to remove file afterwards.
14 years ago
SuprDewd
ea5c866c7e
Support for more archive formats.
14 years ago
SuprDewd
cd35d86fff
Added a function to extract various archives.
...
Also an alias for the function.
14 years ago
Sven Lito
d89d3a2703
merging in changes from robby's repo
14 years ago
Brandon Philips
e7ddaaa2b0
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
14 years ago
Trevor Creech
36bc60455b
Match xterm-color, the default OS X terminal
14 years ago
Robby Russell
a77aceaf5e
Moving some rails and osx-specific functions to their corresponding plugin files
15 years ago
Robby Russell
210a72b441
Initial implementation of a new plugin system, so that people can managed which aliases/functions they want.
15 years ago
Dale Campbell
a8367b0df5
adding quotes to tab()
15 years ago
Robby Russell
4e57305bdd
Adding a function that will open up a ticket in Lighthouse based on the number and there being a URL in a hidden file.
15 years ago
Robby Russell
8dd06e3c73
Moving all zsh config options into a lib/ subdirectory to make way for some upcoming changes to directory structure and configuration options
15 years ago
James Cox
1f7d917ca4
more fixes, more or less have this as i want
15 years ago
Robby Russell
cde57ba9a7
Adding an upgrade_oh_my_zsh function to... well, upgrade Oh My Zsh
15 years ago
Robby Russell
ccd3a191dc
Adding an uninstaller tool
15 years ago
Robby Russell
a4471665ba
Adding zsh_stats function to show you which commands you run the most.
15 years ago
Geoff Garside
0678055f66
Add tab, take and tm functions
15 years ago
Robby Russell
fe8f83cd78
Removing some unused git-dirty parsing code.
15 years ago
Robby Russell
5da20b9ddd
Importing initial files after reorganizing stuff.
15 years ago