mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
Merge remote-tracking branch 'source/master'
This commit is contained in:
commit
9c3449eaa2
71 changed files with 3410 additions and 196 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -5,3 +5,4 @@ custom/*
|
||||||
!custom/example
|
!custom/example
|
||||||
!custom/example.zsh
|
!custom/example.zsh
|
||||||
cache
|
cache
|
||||||
|
*.swp
|
||||||
|
|
|
||||||
|
|
@ -22,4 +22,3 @@ alias sl=ls # often screw this up
|
||||||
|
|
||||||
alias afind='ack-grep -il'
|
alias afind='ack-grep -il'
|
||||||
|
|
||||||
alias x=extract
|
|
||||||
|
|
|
||||||
|
|
@ -59,3 +59,12 @@ zstyle ':completion:*:*:*:users' ignored-patterns \
|
||||||
# ... unless we really want to.
|
# ... unless we really want to.
|
||||||
zstyle '*' single-ignored show
|
zstyle '*' single-ignored show
|
||||||
|
|
||||||
|
if [ "x$COMPLETION_WAITING_DOTS" = "xtrue" ]; then
|
||||||
|
expand-or-complete-with-dots() {
|
||||||
|
echo -n "\e[31m......\e[0m"
|
||||||
|
zle expand-or-complete
|
||||||
|
zle redisplay
|
||||||
|
}
|
||||||
|
zle -N expand-or-complete-with-dots
|
||||||
|
bindkey "^I" expand-or-complete-with-dots
|
||||||
|
fi
|
||||||
|
|
|
||||||
3
lib/edit-command-line.zsh
Normal file
3
lib/edit-command-line.zsh
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
autoload -U edit-command-line
|
||||||
|
zle -N edit-command-line
|
||||||
|
bindkey '\C-x\C-e' edit-command-line
|
||||||
|
|
@ -15,38 +15,3 @@ function take() {
|
||||||
cd $1
|
cd $1
|
||||||
}
|
}
|
||||||
|
|
||||||
function extract() {
|
|
||||||
unset REMOVE_ARCHIVE
|
|
||||||
|
|
||||||
if test "$1" = "-r"; then
|
|
||||||
REMOVE=1
|
|
||||||
shift
|
|
||||||
fi
|
|
||||||
if [[ -f $1 ]]; then
|
|
||||||
case $1 in
|
|
||||||
*.tar.bz2) tar xvjf $1;;
|
|
||||||
*.tar.gz) tar xvzf $1;;
|
|
||||||
*.tar.xz) tar xvJf $1;;
|
|
||||||
*.tar.lzma) tar --lzma -xvf $1;;
|
|
||||||
*.bz2) bunzip $1;;
|
|
||||||
*.rar) unrar x $1;;
|
|
||||||
*.gz) gunzip $1;;
|
|
||||||
*.tar) tar xvf $1;;
|
|
||||||
*.tbz2) tar xvjf $1;;
|
|
||||||
*.tgz) tar xvzf $1;;
|
|
||||||
*.zip) unzip $1;;
|
|
||||||
*.Z) uncompress $1;;
|
|
||||||
*.7z) 7z x $1;;
|
|
||||||
*) echo "'$1' cannot be extracted via >extract<";;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [[ $REMOVE_ARCHIVE -eq 1 ]]; then
|
|
||||||
echo removing "$1";
|
|
||||||
/bin/rm "$1";
|
|
||||||
fi
|
|
||||||
|
|
||||||
else
|
|
||||||
echo "'$1' is not a valid file"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,9 @@ git_prompt_status() {
|
||||||
if $(echo "$INDEX" | grep '^R ' &> /dev/null); then
|
if $(echo "$INDEX" | grep '^R ' &> /dev/null); then
|
||||||
STATUS="$ZSH_THEME_GIT_PROMPT_RENAMED$STATUS"
|
STATUS="$ZSH_THEME_GIT_PROMPT_RENAMED$STATUS"
|
||||||
fi
|
fi
|
||||||
if $(echo "$INDEX" | grep '^D ' &> /dev/null); then
|
if $(echo "$INDEX" | grep '^ D ' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS"
|
||||||
|
elif $(echo "$INDEX" | grep '^AD ' &> /dev/null); then
|
||||||
STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS"
|
STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS"
|
||||||
fi
|
fi
|
||||||
if $(echo "$INDEX" | grep '^UU ' &> /dev/null); then
|
if $(echo "$INDEX" | grep '^UU ' &> /dev/null); then
|
||||||
|
|
|
||||||
|
|
@ -14,13 +14,19 @@ bindkey '^[[B' down-line-or-search
|
||||||
|
|
||||||
bindkey "^[[H" beginning-of-line
|
bindkey "^[[H" beginning-of-line
|
||||||
bindkey "^[[1~" beginning-of-line
|
bindkey "^[[1~" beginning-of-line
|
||||||
|
bindkey "^[OH" beginning-of-line
|
||||||
bindkey "^[[F" end-of-line
|
bindkey "^[[F" end-of-line
|
||||||
bindkey "^[[4~" end-of-line
|
bindkey "^[[4~" end-of-line
|
||||||
|
bindkey "^[OF" end-of-line
|
||||||
bindkey ' ' magic-space # also do history expansion on space
|
bindkey ' ' magic-space # also do history expansion on space
|
||||||
|
|
||||||
|
bindkey "^[[1;5C" forward-word
|
||||||
|
bindkey "^[[1;5D" backward-word
|
||||||
|
|
||||||
bindkey '^[[Z' reverse-menu-complete
|
bindkey '^[[Z' reverse-menu-complete
|
||||||
|
|
||||||
# Make the delete key (or Fn + Delete on the Mac) work instead of outputting a ~
|
# Make the delete key (or Fn + Delete on the Mac) work instead of outputting a ~
|
||||||
|
bindkey '^?' backward-delete-char
|
||||||
bindkey "^[[3~" delete-char
|
bindkey "^[[3~" delete-char
|
||||||
bindkey "^[3;5~" delete-char
|
bindkey "^[3;5~" delete-char
|
||||||
bindkey "\e[3~" delete-char
|
bindkey "\e[3~" delete-char
|
||||||
|
|
|
||||||
|
|
@ -10,4 +10,4 @@ setopt long_list_jobs
|
||||||
|
|
||||||
## pager
|
## pager
|
||||||
export PAGER=less
|
export PAGER=less
|
||||||
export LC_CTYPE=en_US.UTF-8
|
export LC_CTYPE=$LANG
|
||||||
|
|
|
||||||
|
|
@ -18,3 +18,11 @@ for color in {000..255}; do
|
||||||
FG[$color]="%{[38;5;${color}m%}"
|
FG[$color]="%{[38;5;${color}m%}"
|
||||||
BG[$color]="%{[48;5;${color}m%}"
|
BG[$color]="%{[48;5;${color}m%}"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Show all 256 colors with color number
|
||||||
|
function spectrum_ls() {
|
||||||
|
for code in {000..255}; do
|
||||||
|
print -P -- "$code: %F{$code}Test%f"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
||||||
15
oh-my-zsh.sh
15
oh-my-zsh.sh
|
|
@ -1,7 +1,7 @@
|
||||||
# Check for updates on initial load...
|
# Check for updates on initial load...
|
||||||
if [ "$DISABLE_AUTO_UPDATE" != "true" ]
|
if [ "$DISABLE_AUTO_UPDATE" != "true" ]
|
||||||
then
|
then
|
||||||
/usr/bin/env zsh $ZSH/tools/check_for_upgrade.sh
|
/usr/bin/env ZSH=$ZSH zsh $ZSH/tools/check_for_upgrade.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Initializes Oh My Zsh
|
# Initializes Oh My Zsh
|
||||||
|
|
@ -21,17 +21,24 @@ for plugin ($plugins) fpath=($ZSH/plugins/$plugin $fpath)
|
||||||
autoload -U compinit
|
autoload -U compinit
|
||||||
compinit -i
|
compinit -i
|
||||||
|
|
||||||
|
# Set ZSH_CUSTOM to the path where your custom config files
|
||||||
|
# and plugins exists, or else we will use the default custom/
|
||||||
|
if [ "$ZSH_CUSTOM" = "" ]
|
||||||
|
then
|
||||||
|
ZSH_CUSTOM="$ZSH/custom"
|
||||||
|
fi
|
||||||
|
|
||||||
# Load all of the plugins that were defined in ~/.zshrc
|
# Load all of the plugins that were defined in ~/.zshrc
|
||||||
for plugin ($plugins); do
|
for plugin ($plugins); do
|
||||||
if [ -f $ZSH/custom/plugins/$plugin/$plugin.plugin.zsh ]; then
|
if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then
|
||||||
source $ZSH/custom/plugins/$plugin/$plugin.plugin.zsh
|
source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh
|
||||||
elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
|
elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
|
||||||
source $ZSH/plugins/$plugin/$plugin.plugin.zsh
|
source $ZSH/plugins/$plugin/$plugin.plugin.zsh
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Load all of your custom configurations from custom/
|
# Load all of your custom configurations from custom/
|
||||||
for config_file ($ZSH/custom/*.zsh) source $config_file
|
for config_file ($ZSH_CUSTOM/*.zsh) source $config_file
|
||||||
|
|
||||||
# Load the theme
|
# Load the theme
|
||||||
if [ "$ZSH_THEME" = "random" ]
|
if [ "$ZSH_THEME" = "random" ]
|
||||||
|
|
|
||||||
76
plugins/archlinux/archlinux.plugin.zsh
Normal file
76
plugins/archlinux/archlinux.plugin.zsh
Normal file
|
|
@ -0,0 +1,76 @@
|
||||||
|
# Archlinux zsh aliases and functions
|
||||||
|
# Usage is also described at https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins
|
||||||
|
|
||||||
|
# Look for yaourt, and add some useful functions if we have it.
|
||||||
|
if [[ -x `which yaourt` ]]; then
|
||||||
|
upgrade () {
|
||||||
|
yaourt -Syu
|
||||||
|
}
|
||||||
|
alias yaconf='yaourt -C' # Fix all configuration files with vimdiff
|
||||||
|
# Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips
|
||||||
|
alias yaupg='yaourt -Syu' # Synchronize with repositories before upgrading packages that are out of date on the local system.
|
||||||
|
alias yain='yaourt -S' # Install specific package(s) from the repositories
|
||||||
|
alias yains='yaourt -U' # Install specific package not from the repositories but from a file
|
||||||
|
alias yare='yaourt -R' # Remove the specified package(s), retaining its configuration(s) and required dependencies
|
||||||
|
alias yarem='yaourt -Rns' # Remove the specified package(s), its configuration(s) and unneeded dependencies
|
||||||
|
alias yarep='yaourt -Si' # Display information about a given package in the repositories
|
||||||
|
alias yareps='yaourt -Ss' # Search for package(s) in the repositories
|
||||||
|
alias yaloc='yaourt -Qi' # Display information about a given package in the local database
|
||||||
|
alias yalocs='yaourt -Qs' # Search for package(s) in the local database
|
||||||
|
# Additional yaourt alias examples
|
||||||
|
if [[ -x `which abs` ]]; then
|
||||||
|
alias yaupd='yaourt -Sy && sudo abs' # Update and refresh the local package and ABS databases against repositories
|
||||||
|
else
|
||||||
|
alias yaupd='yaourt -Sy' # Update and refresh the local package and ABS databases against repositories
|
||||||
|
fi
|
||||||
|
alias yainsd='yaourt -S --asdeps' # Install given package(s) as dependencies of another package
|
||||||
|
alias yamir='yaourt -Syy' # Force refresh of all package lists after updating /etc/pacman.d/mirrorlist
|
||||||
|
else
|
||||||
|
upgrade() {
|
||||||
|
sudo pacman -Syu
|
||||||
|
}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips
|
||||||
|
alias pacupg='sudo pacman -Syu' # Synchronize with repositories before upgrading packages that are out of date on the local system.
|
||||||
|
alias pacin='sudo pacman -S' # Install specific package(s) from the repositories
|
||||||
|
alias pacins='sudo pacman -U' # Install specific package not from the repositories but from a file
|
||||||
|
alias pacre='sudo pacman -R' # Remove the specified package(s), retaining its configuration(s) and required dependencies
|
||||||
|
alias pacrem='sudo pacman -Rns' # Remove the specified package(s), its configuration(s) and unneeded dependencies
|
||||||
|
alias pacrep='pacman -Si' # Display information about a given package in the repositories
|
||||||
|
alias pacreps='pacman -Ss' # Search for package(s) in the repositories
|
||||||
|
alias pacloc='pacman -Qi' # Display information about a given package in the local database
|
||||||
|
alias paclocs='pacman -Qs' # Search for package(s) in the local database
|
||||||
|
# Additional pacman alias examples
|
||||||
|
if [[ -x `which abs` ]]; then
|
||||||
|
alias pacupd='sudo pacman -Sy && sudo abs' # Update and refresh the local package and ABS databases against repositories
|
||||||
|
else
|
||||||
|
alias pacupd='sudo pacman -Sy' # Update and refresh the local package and ABS databases against repositories
|
||||||
|
fi
|
||||||
|
alias pacinsd='sudo pacman -S --asdeps' # Install given package(s) as dependencies of another package
|
||||||
|
alias pacmir='sudo pacman -Syy' # Force refresh of all package lists after updating /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
|
# https://bbs.archlinux.org/viewtopic.php?id=93683
|
||||||
|
paclist() {
|
||||||
|
sudo pacman -Qei $(pacman -Qu|cut -d" " -f 1)|awk ' BEGIN {FS=":"}/^Name/{printf("\033[1;36m%s\033[1;37m", $2)}/^Description/{print $2}'
|
||||||
|
}
|
||||||
|
|
||||||
|
alias paclsorphans='sudo pacman -Qdt'
|
||||||
|
alias pacrmorphans='sudo pacman -Rs $(pacman -Qtdq)'
|
||||||
|
|
||||||
|
pacdisowned() {
|
||||||
|
tmp=${TMPDIR-/tmp}/pacman-disowned-$UID-$$
|
||||||
|
db=$tmp/db
|
||||||
|
fs=$tmp/fs
|
||||||
|
|
||||||
|
mkdir "$tmp"
|
||||||
|
trap 'rm -rf "$tmp"' EXIT
|
||||||
|
|
||||||
|
pacman -Qlq | sort -u > "$db"
|
||||||
|
|
||||||
|
find /bin /etc /lib /sbin /usr \
|
||||||
|
! -name lost+found \
|
||||||
|
\( -type d -printf '%p/\n' -o -print \) | sort > "$fs"
|
||||||
|
|
||||||
|
comm -23 "$fs" "$db"
|
||||||
|
}
|
||||||
82
plugins/bundler/_bundler
Normal file
82
plugins/bundler/_bundler
Normal file
|
|
@ -0,0 +1,82 @@
|
||||||
|
#compdef bundle
|
||||||
|
|
||||||
|
local curcontext="$curcontext" state line _gems _opts ret=1
|
||||||
|
|
||||||
|
_arguments -C -A "-v" -A "--version" \
|
||||||
|
'(- 1 *)'{-v,--version}'[display version information]' \
|
||||||
|
'1: :->cmds' \
|
||||||
|
'*:: :->args' && ret=0
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
cmds)
|
||||||
|
_values "bundle command" \
|
||||||
|
"install[Install the gems specified by the Gemfile or Gemfile.lock]" \
|
||||||
|
"update[Update dependencies to their latest versions]" \
|
||||||
|
"package[Package the .gem files required by your application]" \
|
||||||
|
"exec[Execute a script in the context of the current bundle]" \
|
||||||
|
"config[Specify and read configuration options for bundler]" \
|
||||||
|
"check[Determine whether the requirements for your application are installed]" \
|
||||||
|
"list[Show all of the gems in the current bundle]" \
|
||||||
|
"show[Show the source location of a particular gem in the bundle]" \
|
||||||
|
"console[Start an IRB session in the context of the current bundle]" \
|
||||||
|
"open[Open an installed gem in the editor]" \
|
||||||
|
"viz[Generate a visual representation of your dependencies]" \
|
||||||
|
"init[Generate a simple Gemfile, placed in the current directory]" \
|
||||||
|
"gem[Create a simple gem, suitable for development with bundler]" \
|
||||||
|
"help[Describe available tasks or one specific task]"
|
||||||
|
ret=0
|
||||||
|
;;
|
||||||
|
args)
|
||||||
|
case $line[1] in
|
||||||
|
help)
|
||||||
|
_values 'commands' \
|
||||||
|
'install' \
|
||||||
|
'update' \
|
||||||
|
'package' \
|
||||||
|
'exec' \
|
||||||
|
'config' \
|
||||||
|
'check' \
|
||||||
|
'list' \
|
||||||
|
'show' \
|
||||||
|
'console' \
|
||||||
|
'open' \
|
||||||
|
'viz' \
|
||||||
|
'init' \
|
||||||
|
'gem' \
|
||||||
|
'help' && ret=0
|
||||||
|
;;
|
||||||
|
install)
|
||||||
|
_arguments \
|
||||||
|
'(--no-color)--no-color[disable colorization in output]' \
|
||||||
|
'(--local)--local[do not attempt to connect to rubygems.org]' \
|
||||||
|
'(--quiet)--quiet[only output warnings and errors]' \
|
||||||
|
'(--gemfile)--gemfile=-[use the specified gemfile instead of Gemfile]:gemfile' \
|
||||||
|
'(--system)--system[install to the system location]' \
|
||||||
|
'(--deployment)--deployment[install using defaults tuned for deployment environments]' \
|
||||||
|
'(--frozen)--frozen[do not allow the Gemfile.lock to be updated after this install]' \
|
||||||
|
'(--path)--path=-[specify a different path than the system default]:path:_files' \
|
||||||
|
'(--binstubs)--binstubs=-[generate bin stubs for bundled gems to ./bin]:directory:_files' \
|
||||||
|
'(--without)--without=-[exclude gems that are part of the specified named group]:groups'
|
||||||
|
ret=0
|
||||||
|
;;
|
||||||
|
exec)
|
||||||
|
_normal && ret=0
|
||||||
|
;;
|
||||||
|
(open|show)
|
||||||
|
_gems=( $(bundle show 2> /dev/null | sed -e '/^ \*/!d; s/^ \* \([^ ]*\) .*/\1/') )
|
||||||
|
if [[ $_gems != "" ]]; then
|
||||||
|
_values 'gems' $_gems && ret=0
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
_opts=( $(bundle help $line[1] | sed -e '/^ \[-/!d; s/^ \[\(-[^=]*\)=.*/\1/') )
|
||||||
|
_opts+=( $(bundle help $line[1] | sed -e '/^ -/!d; s/^ \(-.\), \[\(-[^=]*\)=.*/\1 \2/') )
|
||||||
|
if [[ $_opts != "" ]]; then
|
||||||
|
_values 'options' $_opts && ret=0
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
return ret
|
||||||
|
|
@ -1,11 +1,16 @@
|
||||||
|
fpath=($ZSH/plugins/bundler $fpath)
|
||||||
|
autoload -U compinit
|
||||||
|
compinit -i
|
||||||
|
|
||||||
alias be="bundle exec"
|
alias be="bundle exec"
|
||||||
alias bi="bundle install"
|
alias bi="bundle install"
|
||||||
alias bl="bundle list"
|
alias bl="bundle list"
|
||||||
|
alias bp="bundle package"
|
||||||
alias bu="bundle update"
|
alias bu="bundle update"
|
||||||
|
|
||||||
# The following is based on https://github.com/gma/bundler-exec
|
# The following is based on https://github.com/gma/bundler-exec
|
||||||
|
|
||||||
bundled_commands=(cap capify cucumber heroku rackup rails rake rspec ruby shotgun spec spork thin unicorn unicorn_rails)
|
bundled_commands=(cap capify cucumber foreman guard heroku nanoc rackup rails rainbows rake rspec ruby shotgun spec spork thin unicorn unicorn_rails)
|
||||||
|
|
||||||
## Functions
|
## Functions
|
||||||
|
|
||||||
|
|
@ -23,16 +28,19 @@ _within-bundled-project() {
|
||||||
}
|
}
|
||||||
|
|
||||||
_run-with-bundler() {
|
_run-with-bundler() {
|
||||||
local command="$1"
|
|
||||||
shift
|
|
||||||
if _bundler-installed && _within-bundled-project; then
|
if _bundler-installed && _within-bundled-project; then
|
||||||
bundle exec $command "$@"
|
bundle exec $@
|
||||||
else
|
else
|
||||||
$command "$@"
|
$@
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
## Main program
|
## Main program
|
||||||
for cmd in $bundled_commands; do
|
for cmd in $bundled_commands; do
|
||||||
alias $cmd="_run-with-bundler $cmd"
|
eval "function bundled_$cmd () { _run-with-bundler $cmd \$@}"
|
||||||
|
alias $cmd=bundled_$cmd
|
||||||
|
|
||||||
|
if which _$cmd > /dev/null 2>&1; then
|
||||||
|
compdef _$cmd bundled_$cmd
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
|
||||||
36
plugins/cake/cake.plugin.zsh
Normal file
36
plugins/cake/cake.plugin.zsh
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
# Set this to 1 if you want to cache the tasks
|
||||||
|
_cake_cache_task_list=1
|
||||||
|
|
||||||
|
# Cache filename
|
||||||
|
_cake_task_cache_file='.cake_task_cache'
|
||||||
|
|
||||||
|
_cake_get_target_list () {
|
||||||
|
cake | grep '^cake ' | sed -e "s/cake \([^ ]*\) .*/\1/" | grep -v '^$'
|
||||||
|
}
|
||||||
|
|
||||||
|
_cake_does_target_list_need_generating () {
|
||||||
|
|
||||||
|
if [ ${_cake_cache_task_list} -eq 0 ]; then
|
||||||
|
return 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f ${_cake_task_cache_file} ]; then return 0;
|
||||||
|
else
|
||||||
|
accurate=$(stat -f%m $_cake_task_cache_file)
|
||||||
|
changed=$(stat -f%m Cakefile)
|
||||||
|
return $(expr $accurate '>=' $changed)
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
_cake () {
|
||||||
|
if [ -f Cakefile ]; then
|
||||||
|
if _cake_does_target_list_need_generating; then
|
||||||
|
_cake_get_target_list > ${_cake_task_cache_file}
|
||||||
|
compadd `cat ${_cake_task_cache_file}`
|
||||||
|
else
|
||||||
|
compadd `_cake_get_target_list`
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
compdef _cake cake
|
||||||
2
plugins/cloudapp/cloudapp.plugin.zsh
Normal file
2
plugins/cloudapp/cloudapp.plugin.zsh
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/zsh
|
||||||
|
alias cloudapp=$ZSH/plugins/cloudapp/cloudapp.rb
|
||||||
60
plugins/cloudapp/cloudapp.rb
Executable file
60
plugins/cloudapp/cloudapp.rb
Executable file
|
|
@ -0,0 +1,60 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
#
|
||||||
|
# cloudapp
|
||||||
|
# Zach Holman / @holman
|
||||||
|
#
|
||||||
|
# Uploads a file from the command line to CloudApp, drops it into your
|
||||||
|
# clipboard (on a Mac, at least).
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
#
|
||||||
|
# cloudapp drunk-blake.png
|
||||||
|
#
|
||||||
|
# This requires Aaron Russell's cloudapp_api gem:
|
||||||
|
#
|
||||||
|
# gem install cloudapp_api
|
||||||
|
#
|
||||||
|
# Requires you set your CloudApp credentials in ~/.cloudapp as a simple file of:
|
||||||
|
#
|
||||||
|
# email
|
||||||
|
# password
|
||||||
|
|
||||||
|
require 'rubygems'
|
||||||
|
begin
|
||||||
|
require 'cloudapp_api'
|
||||||
|
rescue LoadError
|
||||||
|
puts "You need to install cloudapp_api: gem install cloudapp_api"
|
||||||
|
exit!(1)
|
||||||
|
end
|
||||||
|
|
||||||
|
config_file = "#{ENV['HOME']}/.cloudapp"
|
||||||
|
unless File.exist?(config_file)
|
||||||
|
puts "You need to type your email and password (one per line) into "+
|
||||||
|
"`~/.cloudapp`"
|
||||||
|
exit!(1)
|
||||||
|
end
|
||||||
|
|
||||||
|
email,password = File.read(config_file).split("\n")
|
||||||
|
|
||||||
|
class HTTParty::Response
|
||||||
|
# Apparently HTTPOK.ok? IS NOT OKAY WTFFFFFFFFFFUUUUUUUUUUUUUU
|
||||||
|
# LETS MONKEY PATCH IT I FEEL OKAY ABOUT IT
|
||||||
|
def ok? ; true end
|
||||||
|
end
|
||||||
|
|
||||||
|
if ARGV[0].nil?
|
||||||
|
puts "You need to specify a file to upload."
|
||||||
|
exit!(1)
|
||||||
|
end
|
||||||
|
|
||||||
|
CloudApp.authenticate(email,password)
|
||||||
|
url = CloudApp::Item.create(:upload, {:file => ARGV[0]}).url
|
||||||
|
|
||||||
|
# Say it for good measure.
|
||||||
|
puts "Uploaded to #{url}."
|
||||||
|
|
||||||
|
# Get the embed link.
|
||||||
|
url = "#{url}/#{ARGV[0].split('/').last}"
|
||||||
|
|
||||||
|
# Copy it to your (Mac's) clipboard.
|
||||||
|
`echo '#{url}' | tr -d "\n" | pbcopy`
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
# Aliases
|
|
||||||
alias as="aptitude -F \"* %p -> %d \n(%v/%V)\" \
|
|
||||||
--no-gui --disable-columns search" # search package
|
|
||||||
alias ad="sudo apt-get update" # update packages lists
|
|
||||||
alias au="sudo apt-get update && \
|
|
||||||
sudo apt-get dselect-upgrade" # upgrade packages
|
|
||||||
alias ai="sudo apt-get install" # install package
|
|
||||||
alias ar="sudo apt-get remove --purge && \
|
|
||||||
sudo apt-get autoremove --purge" # remove package
|
|
||||||
alias ap="apt-cache policy" # apt policy
|
|
||||||
alias av="apt-cache show" # show package info
|
|
||||||
alias acs="apt-cache search" # search package
|
|
||||||
alias ac="sudo apt-get clean && sudo apt-get autoclean" # clean apt cache
|
|
||||||
|
|
@ -1,53 +1,143 @@
|
||||||
# https://github.com/dbbolton/
|
# Authors:
|
||||||
|
# https://github.com/AlexBio
|
||||||
|
# https://github.com/dbb
|
||||||
#
|
#
|
||||||
# Debian-related zsh aliases and functions for zsh
|
# Debian-related zsh aliases and functions for zsh
|
||||||
|
|
||||||
|
# Use aptitude if installed, or apt-get if not.
|
||||||
|
# You can just set apt_pref='apt-get' to override it.
|
||||||
|
if [[ -e $( which aptitude ) ]]; then
|
||||||
|
apt_pref='aptitude'
|
||||||
|
else
|
||||||
|
apt_pref='apt-get'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Use sudo by default if it's installed
|
||||||
|
if [[ -e $( which sudo ) ]]; then
|
||||||
|
use_sudo=1
|
||||||
|
fi
|
||||||
|
|
||||||
# Aliases ###################################################################
|
# Aliases ###################################################################
|
||||||
|
# These are for more obscure uses of apt-get and aptitude that aren't covered
|
||||||
|
# below.
|
||||||
|
alias ag='apt-get'
|
||||||
|
alias at='aptitude'
|
||||||
|
|
||||||
# Some self-explanatory aliases
|
# Some self-explanatory aliases
|
||||||
alias afs='apt-file search --regexp'
|
alias acs="apt-cache search"
|
||||||
alias aps='aptitude search'
|
alias aps='aptitude search'
|
||||||
alias apsrc='apt-get source'
|
alias as="aptitude -F \"* %p -> %d \n(%v/%V)\" \
|
||||||
alias apv='apt-cache policy'
|
--no-gui --disable-columns search" # search package
|
||||||
|
|
||||||
alias apdg='su -c "aptitude update && aptitude safe-upgrade"'
|
# apt-file
|
||||||
alias apud='su -c "aptitude update"'
|
alias afs='apt-file search --regexp'
|
||||||
alias apug='su -c "aptitude safe-upgrade"'
|
|
||||||
|
|
||||||
|
|
||||||
|
# These are apt-get only
|
||||||
|
alias asrc='apt-get source'
|
||||||
|
alias ap='apt-cache policy'
|
||||||
|
|
||||||
|
# superuser operations ######################################################
|
||||||
|
if [[ $use_sudo -eq 1 ]]; then
|
||||||
|
# commands using sudo #######
|
||||||
|
alias aac="sudo $apt_pref autoclean"
|
||||||
|
alias abd="sudo $apt_pref build-dep"
|
||||||
|
alias ac="sudo $apt_pref clean"
|
||||||
|
alias ad="sudo $apt_pref update"
|
||||||
|
alias adg="sudo $apt_pref update && sudo $apt_pref upgrade"
|
||||||
|
alias adu="sudo $apt_pref update && sudo $apt_pref dist-upgrade"
|
||||||
|
alias afu='sudo apt-file update'
|
||||||
|
alias ag="sudo $apt_pref upgrade"
|
||||||
|
alias ai="sudo $apt_pref install"
|
||||||
|
alias ap="sudo $apt_pref purge"
|
||||||
|
alias ar="sudo $apt_pref remove"
|
||||||
|
|
||||||
|
# apt-get only
|
||||||
|
alias ads="sudo $apt_pref dselect-upgrade"
|
||||||
|
|
||||||
|
# Install all .deb files in the current directory.
|
||||||
|
# Warning: you will need to put the glob in single quotes if you use:
|
||||||
|
# glob_subst
|
||||||
|
alias di='sudo dpkg -i ./*.deb'
|
||||||
|
|
||||||
|
# Remove ALL kernel images and headers EXCEPT the one in use
|
||||||
|
alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) \
|
||||||
|
?not(~n`uname -r`))'
|
||||||
|
|
||||||
|
|
||||||
|
# commands using su #########
|
||||||
|
else
|
||||||
|
alias aac='su -ls "'"$apt_pref"' autoclean" root'
|
||||||
|
abd() {
|
||||||
|
cmd="su -lc '$apt_pref build-dep $@' root"
|
||||||
|
print "$cmd"
|
||||||
|
eval "$cmd"
|
||||||
|
}
|
||||||
|
alias ac='su -ls "'"$apt_pref"' clean" root'
|
||||||
|
alias ad='su -lc "'"$apt_pref"' update" root'
|
||||||
|
alias adg='su -lc "'"$apt_pref"' update && aptitude safe-upgrade" root'
|
||||||
|
alias adu='su -lc "'"$apt_pref"' update && aptitude dist-upgrade" root'
|
||||||
|
alias afu='su -lc "apt-file update"'
|
||||||
|
alias ag='su -lc "'"$apt_pref"' safe-upgrade" root'
|
||||||
|
ai() {
|
||||||
|
cmd="su -lc 'aptitude -P install $@' root"
|
||||||
|
print "$cmd"
|
||||||
|
eval "$cmd"
|
||||||
|
}
|
||||||
|
ap() {
|
||||||
|
cmd="su -lc '$apt_pref -P purge $@' root"
|
||||||
|
print "$cmd"
|
||||||
|
eval "$cmd"
|
||||||
|
}
|
||||||
|
ar() {
|
||||||
|
cmd="su -lc '$apt_pref -P remove $@' root"
|
||||||
|
print "$cmd"
|
||||||
|
eval "$cmd"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Install all .deb files in the current directory
|
||||||
|
# Assumes glob_subst is off
|
||||||
|
alias di='su -lc "dpkg -i ./*.deb" root'
|
||||||
|
|
||||||
|
# Remove ALL kernel images and headers EXCEPT the one in use
|
||||||
|
alias kclean='su -lc '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) \
|
||||||
|
?not(~n`uname -r`))'\'' root'
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Misc. #####################################################################
|
||||||
# print all installed packages
|
# print all installed packages
|
||||||
alias allpkgs='aptitude search -F "%p" --disable-columns ~i'
|
alias allpkgs='aptitude search -F "%p" --disable-columns ~i'
|
||||||
|
|
||||||
# Install all .deb files in the current directory.
|
|
||||||
# Warning: you will need to put the glob in single quotes if you use:
|
|
||||||
# glob_subst
|
|
||||||
alias di='su -c "dpkg -i ./*.deb"'
|
|
||||||
|
|
||||||
# Create a basic .deb package
|
# Create a basic .deb package
|
||||||
alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc'
|
alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc'
|
||||||
|
|
||||||
# Remove ALL kernel images and headers EXCEPT the one in use
|
|
||||||
alias kclean='su -c '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) ?not(~n`uname -r`))'\'' root'
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Functions #################################################################
|
# Functions #################################################################
|
||||||
|
|
||||||
# create a simple script that can be used to 'duplicate' a system
|
# create a simple script that can be used to 'duplicate' a system
|
||||||
apt-copy() {
|
apt-copy() {
|
||||||
print '#!/bin/sh'"\n" > apt-copy.sh
|
print '#!/bin/sh'"\n" > apt-copy.sh
|
||||||
|
|
||||||
list=$(perl -m'AptPkg::Cache' -e '$c=AptPkg::Cache->new; for (keys %$c){ push @a, $_ if $c->{$_}->{'CurrentState'} eq 'Installed';} print "$_ " for sort @a;')
|
cmd="$apt_pref install "
|
||||||
|
|
||||||
print 'aptitude install '"$list\n" >> apt-copy.sh
|
for p in ${(f)"$(aptitude search -F "%p" --disable-columns \~i)"}; {
|
||||||
|
cmd="${cmd} ${p}"
|
||||||
|
}
|
||||||
|
|
||||||
chmod +x apt-copy.sh
|
print $cmd "\n" >> apt-copy.sh
|
||||||
|
|
||||||
|
chmod +x apt-copy.sh
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
# Kernel-package building shortcut
|
# Kernel-package building shortcut
|
||||||
dbb-build () {
|
kerndeb () {
|
||||||
MAKEFLAGS='' # temporarily unset MAKEFLAGS ( '-j3' will fail )
|
# temporarily unset MAKEFLAGS ( '-j3' will fail )
|
||||||
|
MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' )
|
||||||
|
print '$MAKEFLAGS set to '"'$MAKEFLAGS'"
|
||||||
appendage='-custom' # this shows up in $ (uname -r )
|
appendage='-custom' # this shows up in $ (uname -r )
|
||||||
revision=$(date +"%Y%m%d") # this shows up in the .deb file name
|
revision=$(date +"%Y%m%d") # this shows up in the .deb file name
|
||||||
|
|
||||||
|
|
@ -57,4 +147,3 @@ dbb-build () {
|
||||||
"$revision" kernel_image kernel_headers
|
"$revision" kernel_image kernel_headers
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
222
plugins/django/django.plugin.zsh
Normal file
222
plugins/django/django.plugin.zsh
Normal file
|
|
@ -0,0 +1,222 @@
|
||||||
|
#compdef manage.py
|
||||||
|
|
||||||
|
typeset -ga nul_args
|
||||||
|
nul_args=(
|
||||||
|
'--settings=-[the Python path to a settings module.]:file:_files'
|
||||||
|
'--pythonpath=-[a directory to add to the Python path.]::directory:_directories'
|
||||||
|
'--traceback[print traceback on exception.]'
|
||||||
|
"--version[show program's version number and exit.]"
|
||||||
|
{-h,--help}'[show this help message and exit.]'
|
||||||
|
)
|
||||||
|
|
||||||
|
_managepy-adminindex(){
|
||||||
|
_arguments -s : \
|
||||||
|
$nul_args \
|
||||||
|
'*::directory:_directories' && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-createcachetable(){
|
||||||
|
_arguments -s : \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-dbshell(){
|
||||||
|
_arguments -s : \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-diffsettings(){
|
||||||
|
_arguments -s : \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-dumpdata(){
|
||||||
|
_arguments -s : \
|
||||||
|
'--format=-[specifies the output serialization format for fixtures.]:format:(json yaml xml)' \
|
||||||
|
'--indent=-[specifies the indent level to use when pretty-printing output.]:' \
|
||||||
|
$nul_args \
|
||||||
|
'*::appname:_applist' && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-flush(){
|
||||||
|
_arguments -s : \
|
||||||
|
'--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \
|
||||||
|
'--noinput[tells Django to NOT prompt the user for input of any kind.]' \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-help(){
|
||||||
|
_arguments -s : \
|
||||||
|
'*:command:_managepy_cmds' \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy_cmds(){
|
||||||
|
local line
|
||||||
|
local -a cmd
|
||||||
|
_call_program help-command ./manage.py help \
|
||||||
|
|& sed -n '/^ /s/[(), ]/ /gp' \
|
||||||
|
| while read -A line; do cmd=($line $cmd) done
|
||||||
|
_describe -t managepy-command 'manage.py command' cmd
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-inspectdb(){
|
||||||
|
_arguments -s : \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-loaddata(){
|
||||||
|
_arguments -s : \
|
||||||
|
'--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \
|
||||||
|
'*::file:_files' \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-reset(){
|
||||||
|
_arguments -s : \
|
||||||
|
'--noinput[tells Django to NOT prompt the user for input of any kind.]' \
|
||||||
|
'*::appname:_applist' \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-runfcgi(){
|
||||||
|
local state
|
||||||
|
|
||||||
|
local fcgi_opts
|
||||||
|
fcgi_opts=(
|
||||||
|
'protocol[fcgi, scgi, ajp, ... (default fcgi)]:protocol:(fcgi scgi ajp)'
|
||||||
|
'host[hostname to listen on..]:'
|
||||||
|
'port[port to listen on.]:'
|
||||||
|
'socket[UNIX socket to listen on.]::file:_files'
|
||||||
|
'method[prefork or threaded (default prefork)]:method:(prefork threaded)'
|
||||||
|
'maxrequests[number of requests a child handles before it is killed and a new child is forked (0 = no limit).]:'
|
||||||
|
'maxspare[max number of spare processes / threads.]:'
|
||||||
|
'minspare[min number of spare processes / threads.]:'
|
||||||
|
'maxchildren[hard limit number of processes / threads.]:'
|
||||||
|
'daemonize[whether to detach from terminal.]:boolean:(False True)'
|
||||||
|
'pidfile[write the spawned process-id to this file.]:file:_files'
|
||||||
|
'workdir[change to this directory when daemonizing.]:directory:_files'
|
||||||
|
'outlog[write stdout to this file.]:file:_files'
|
||||||
|
'errlog[write stderr to this file.]:file:_files'
|
||||||
|
)
|
||||||
|
|
||||||
|
_arguments -s : \
|
||||||
|
$nul_args \
|
||||||
|
'*: :_values "FCGI Setting" $fcgi_opts' && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-runserver(){
|
||||||
|
_arguments -s : \
|
||||||
|
'--noreload[tells Django to NOT use the auto-reloader.]' \
|
||||||
|
'--adminmedia[specifies the directory from which to serve admin media.]:directory:_files' \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-shell(){
|
||||||
|
_arguments -s : \
|
||||||
|
'--plain[tells Django to use plain Python, not IPython.]' \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-sql(){}
|
||||||
|
_managepy-sqlall(){}
|
||||||
|
_managepy-sqlclear(){}
|
||||||
|
_managepy-sqlcustom(){}
|
||||||
|
_managepy-sqlflush(){}
|
||||||
|
_managepy-sqlindexes(){}
|
||||||
|
_managepy-sqlinitialdata(){}
|
||||||
|
_managepy-sqlreset(){}
|
||||||
|
_managepy-sqlsequencereset(){}
|
||||||
|
_managepy-startapp(){}
|
||||||
|
|
||||||
|
_managepy-syncdb() {
|
||||||
|
_arguments -s : \
|
||||||
|
'--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \
|
||||||
|
'--noinput[tells Django to NOT prompt the user for input of any kind.]' \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-test() {
|
||||||
|
_arguments -s : \
|
||||||
|
'--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \
|
||||||
|
'--noinput[tells Django to NOT prompt the user for input of any kind.]' \
|
||||||
|
'*::appname:_applist' \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-testserver() {
|
||||||
|
_arguments -s : \
|
||||||
|
'--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \
|
||||||
|
'--addrport=-[port number or ipaddr:port to run the server on.]' \
|
||||||
|
'*::fixture:_files' \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-validate() {
|
||||||
|
_arguments -s : \
|
||||||
|
$nul_args && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy-commands() {
|
||||||
|
local -a commands
|
||||||
|
|
||||||
|
commands=(
|
||||||
|
'adminindex:prints the admin-index template snippet for the given app name(s).'
|
||||||
|
'createcachetable:creates the table needed to use the SQL cache backend.'
|
||||||
|
'dbshell:runs the command-line client for the current DATABASE_ENGINE.'
|
||||||
|
"diffsettings:displays differences between the current settings.py and Django's default settings."
|
||||||
|
'dumpdata:Output the contents of the database as a fixture of the given format.'
|
||||||
|
'flush:Executes ``sqlflush`` on the current database.'
|
||||||
|
'help:manage.py help.'
|
||||||
|
'inspectdb:Introspects the database tables in the given database and outputs a Django model module.'
|
||||||
|
'loaddata:Installs the named fixture(s) in the database.'
|
||||||
|
'reset:Executes ``sqlreset`` for the given app(s) in the current database.'
|
||||||
|
'runfcgi:Run this project as a fastcgi (or some other protocol supported by flup) application,'
|
||||||
|
'runserver:Starts a lightweight Web server for development.'
|
||||||
|
'shell:Runs a Python interactive interpreter.'
|
||||||
|
'sql:Prints the CREATE TABLE SQL statements for the given app name(s).'
|
||||||
|
'sqlall:Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for the given model module name(s).'
|
||||||
|
'sqlclear:Prints the DROP TABLE SQL statements for the given app name(s).'
|
||||||
|
'sqlcustom:Prints the custom table modifying SQL statements for the given app name(s).'
|
||||||
|
'sqlflush:Returns a list of the SQL statements required to return all tables in the database to the state they were in just after they were installed.'
|
||||||
|
'sqlindexes:Prints the CREATE INDEX SQL statements for the given model module name(s).'
|
||||||
|
"sqlinitialdata:RENAMED: see 'sqlcustom'"
|
||||||
|
'sqlreset:Prints the DROP TABLE SQL, then the CREATE TABLE SQL, for the given app name(s).'
|
||||||
|
'sqlsequencereset:Prints the SQL statements for resetting sequences for the given app name(s).'
|
||||||
|
"startapp:Creates a Django app directory structure for the given app name in this project's directory."
|
||||||
|
"syncdb:Create the database tables for all apps in INSTALLED_APPS whose tables haven't already been created."
|
||||||
|
'test:Runs the test suite for the specified applications, or the entire site if no apps are specified.'
|
||||||
|
'testserver:Runs a development server with data from the given fixture(s).'
|
||||||
|
'validate:Validates all installed models.'
|
||||||
|
)
|
||||||
|
|
||||||
|
_describe -t commands 'manage.py command' commands && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_applist() {
|
||||||
|
local line
|
||||||
|
local -a apps
|
||||||
|
_call_program help-command "python -c \"import os.path as op, re, django.conf, sys;\\
|
||||||
|
bn=op.basename(op.abspath(op.curdir));[sys\\
|
||||||
|
.stdout.write(str(re.sub(r'^%s\.(.*?)$' %
|
||||||
|
bn, r'\1', i)) + '\n') for i in django.conf.settings.\\
|
||||||
|
INSTALLED_APPS if re.match(r'^%s' % bn, i)]\"" \
|
||||||
|
| while read -A line; do apps=($line $apps) done
|
||||||
|
_values 'Application' $apps && ret=0
|
||||||
|
}
|
||||||
|
|
||||||
|
_managepy() {
|
||||||
|
local curcontext=$curcontext ret=1
|
||||||
|
|
||||||
|
if ((CURRENT == 2)); then
|
||||||
|
_managepy-commands
|
||||||
|
else
|
||||||
|
shift words
|
||||||
|
(( CURRENT -- ))
|
||||||
|
curcontext="${curcontext%:*:*}:managepy-$words[1]:"
|
||||||
|
_call_function ret _managepy-$words[1]
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
compdef _managepy manage.py
|
||||||
|
compdef _managepy django
|
||||||
8
plugins/extract/_extract
Normal file
8
plugins/extract/_extract
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
#compdef extract
|
||||||
|
#autoload
|
||||||
|
|
||||||
|
_arguments \
|
||||||
|
'(-r --remove)'{-r,--remove}'[Remove archive.]' \
|
||||||
|
"*::archive file:_files -g '(#i)*.(tar|tgz|tbz|tbz2|txz|tlz|gz|bz2|xz|lzma|Z|zip|rar|7z|deb)(-.)'" && return 0
|
||||||
|
|
||||||
|
|
||||||
85
plugins/extract/extract.plugin.zsh
Normal file
85
plugins/extract/extract.plugin.zsh
Normal file
|
|
@ -0,0 +1,85 @@
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# FILE: extract.plugin.zsh
|
||||||
|
# DESCRIPTION: oh-my-zsh plugin file.
|
||||||
|
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com)
|
||||||
|
# VERSION: 1.0.1
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
function extract() {
|
||||||
|
local remove_archive
|
||||||
|
local success
|
||||||
|
local file_name
|
||||||
|
local extract_dir
|
||||||
|
|
||||||
|
if (( $# == 0 )); then
|
||||||
|
echo "Usage: extract [-option] [file ...]"
|
||||||
|
echo
|
||||||
|
echo Options:
|
||||||
|
echo " -r, --remove Remove archive."
|
||||||
|
echo
|
||||||
|
echo "Report bugs to <sorin.ionescu@gmail.com>."
|
||||||
|
fi
|
||||||
|
|
||||||
|
remove_archive=1
|
||||||
|
if [[ "$1" == "-r" ]] || [[ "$1" == "--remove" ]]; then
|
||||||
|
remove_archive=0
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
while (( $# > 0 )); do
|
||||||
|
if [[ ! -f "$1" ]]; then
|
||||||
|
echo "extract: '$1' is not a valid file" 1>&2
|
||||||
|
shift
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
|
success=0
|
||||||
|
file_name="$( basename "$1" )"
|
||||||
|
extract_dir="$( echo "$file_name" | sed "s/\.${1##*.}//g" )"
|
||||||
|
case "$1" in
|
||||||
|
(*.tar.gz|*.tgz) tar xvzf "$1" ;;
|
||||||
|
(*.tar.bz2|*.tbz|*.tbz2) tar xvjf "$1" ;;
|
||||||
|
(*.tar.xz|*.txz) tar --xz --help &> /dev/null \
|
||||||
|
&& tar --xz -xvf "$1" \
|
||||||
|
|| xzcat "$1" | tar xvf - ;;
|
||||||
|
(*.tar.zma|*.tlz) tar --lzma --help &> /dev/null \
|
||||||
|
&& tar --lzma -xvf "$1" \
|
||||||
|
|| lzcat "$1" | tar xvf - ;;
|
||||||
|
(*.tar) tar xvf "$1" ;;
|
||||||
|
(*.gz) gunzip "$1" ;;
|
||||||
|
(*.bz2) bunzip2 "$1" ;;
|
||||||
|
(*.xz) unxz "$1" ;;
|
||||||
|
(*.lzma) unlzma "$1" ;;
|
||||||
|
(*.Z) uncompress "$1" ;;
|
||||||
|
(*.zip) unzip "$1" -d $extract_dir ;;
|
||||||
|
(*.rar) unrar e -ad "$1" ;;
|
||||||
|
(*.7z) 7za x "$1" ;;
|
||||||
|
(*.deb)
|
||||||
|
mkdir -p "$extract_dir/control"
|
||||||
|
mkdir -p "$extract_dir/data"
|
||||||
|
cd "$extract_dir"; ar vx "../${1}" > /dev/null
|
||||||
|
cd control; tar xzvf ../control.tar.gz
|
||||||
|
cd ../data; tar xzvf ../data.tar.gz
|
||||||
|
cd ..; rm *.tar.gz debian-binary
|
||||||
|
cd ..
|
||||||
|
;;
|
||||||
|
(*)
|
||||||
|
echo "extract: '$1' cannot be extracted" 1>&2
|
||||||
|
success=1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
(( success = $success > 0 ? $success : $? ))
|
||||||
|
(( $success == 0 )) && (( $remove_archive == 0 )) && rm "$1"
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
alias x=extract
|
||||||
|
|
||||||
|
# add extract completion function to path
|
||||||
|
fpath=($ZSH/plugins/extract $fpath)
|
||||||
|
autoload -U compinit
|
||||||
|
compinit -i
|
||||||
|
|
||||||
34
plugins/gas/_gas
Normal file
34
plugins/gas/_gas
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
#compdef gas
|
||||||
|
|
||||||
|
local curcontext="$curcontext" state line cmds ret=1
|
||||||
|
|
||||||
|
_arguments -C \
|
||||||
|
'(- 1 *)'{-v,--version}'[display version information]' \
|
||||||
|
'(-h|--help)'{-h,--help}'[show help information]' \
|
||||||
|
'1: :->cmds' \
|
||||||
|
'*: :->args' && ret=0
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
cmds)
|
||||||
|
cmds=(
|
||||||
|
"version:Prints Gas's version"
|
||||||
|
"use:Uses author"
|
||||||
|
"show:Shows your current user"
|
||||||
|
"list:Lists your authors"
|
||||||
|
"import:Imports current user to gasconfig"
|
||||||
|
"help:Describe available tasks or one specific task"
|
||||||
|
"delete:Deletes author"
|
||||||
|
"add:Adds author to gasconfig"
|
||||||
|
)
|
||||||
|
_describe -t commands 'gas command' cmds && ret=0
|
||||||
|
;;
|
||||||
|
args)
|
||||||
|
case $line[1] in
|
||||||
|
(use|delete)
|
||||||
|
_values -S , 'authors' $(cat ~/.gas | sed -n -e 's/^\[\(.*\)\]/\1/p') && ret=0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
return ret
|
||||||
|
|
@ -27,11 +27,21 @@ alias gcp='git cherry-pick'
|
||||||
compdef _git gcp=git-cherry-pick
|
compdef _git gcp=git-cherry-pick
|
||||||
alias glg='git log --stat --max-count=5'
|
alias glg='git log --stat --max-count=5'
|
||||||
compdef _git glg=git-log
|
compdef _git glg=git-log
|
||||||
|
alias glgg='git log --graph --max-count=5'
|
||||||
|
compdef _git glgg=git-log
|
||||||
|
alias gss='git status -s'
|
||||||
|
compdef _git gss=git-status
|
||||||
|
alias ga='git add'
|
||||||
|
compdef _git ga=git-add
|
||||||
|
alias gm='git merge'
|
||||||
|
compdef _git gm=git-merge
|
||||||
|
|
||||||
# Git and svn mix
|
# Git and svn mix
|
||||||
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
|
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
|
||||||
compdef git-svn-dcommit-push=git
|
compdef git-svn-dcommit-push=git
|
||||||
|
|
||||||
|
alias gsr='git svn rebase'
|
||||||
|
alias gsd='git svn dcommit'
|
||||||
#
|
#
|
||||||
# Will return the current branch name
|
# Will return the current branch name
|
||||||
# Usage example: git pull origin $(current_branch)
|
# Usage example: git pull origin $(current_branch)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,60 @@
|
||||||
# hub alias from defunkt
|
# Setup hub function for git, if it is available; http://github.com/defunkt/hub
|
||||||
# https://github.com/defunkt/hub
|
if [ "$commands[(I)hub]" ] && [ "$commands[(I)ruby]" ]; then
|
||||||
if [ "$commands[(I)hub]" ]; then
|
|
||||||
# eval `hub alias -s zsh`
|
# eval `hub alias -s zsh`
|
||||||
function git(){hub "$@"}
|
function git(){hub "$@"}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Functions #################################################################
|
||||||
|
|
||||||
|
# https://github.com/dbb
|
||||||
|
|
||||||
|
|
||||||
|
# empty_gh [NAME_OF_REPO]
|
||||||
|
#
|
||||||
|
# Use this when creating a new repo from scratch.
|
||||||
|
empty_gh() { # [NAME_OF_REPO]
|
||||||
|
repo = $1
|
||||||
|
ghuser=$( git config github.user )
|
||||||
|
|
||||||
|
mkdir "$repo"
|
||||||
|
cd "$repo"
|
||||||
|
git init
|
||||||
|
touch README
|
||||||
|
git add README
|
||||||
|
git commit -m 'Initial commit.'
|
||||||
|
git remote add origin git@github.com:${ghuser}/${repo}.git
|
||||||
|
git push -u origin master
|
||||||
|
}
|
||||||
|
|
||||||
|
# new_gh [DIRECTORY]
|
||||||
|
#
|
||||||
|
# Use this when you have a directory that is not yet set up for git.
|
||||||
|
# This function will add all non-hidden files to git.
|
||||||
|
new_gh() { # [DIRECTORY]
|
||||||
|
cd "$1"
|
||||||
|
ghuser=$( git config github.user )
|
||||||
|
|
||||||
|
git init
|
||||||
|
# add all non-dot files
|
||||||
|
print '.*'"\n"'*~' >> .gitignore
|
||||||
|
git add ^.*
|
||||||
|
git commit -m 'Initial commit.'
|
||||||
|
git remote add origin git@github.com:${ghuser}/${repo}.git
|
||||||
|
git push -u origin master
|
||||||
|
}
|
||||||
|
|
||||||
|
# exist_gh [DIRECTORY]
|
||||||
|
#
|
||||||
|
# Use this when you have a git repo that's ready to go and you want to add it
|
||||||
|
# to your GitHub.
|
||||||
|
exist_gh() { # [DIRECTORY]
|
||||||
|
cd "$1"
|
||||||
|
name=$( git config user.name )
|
||||||
|
ghuser=$( git config github.user )
|
||||||
|
|
||||||
|
git remote add origin git@github.com:${ghuser}/${repo}.git
|
||||||
|
git push -u origin master
|
||||||
|
}
|
||||||
|
|
||||||
|
# End Functions #############################################################
|
||||||
|
|
||||||
|
|
|
||||||
80
plugins/gnu-utils/gnu-utils.plugin.zsh
Normal file
80
plugins/gnu-utils/gnu-utils.plugin.zsh
Normal file
|
|
@ -0,0 +1,80 @@
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# FILE: gnu-utils.plugin.zsh
|
||||||
|
# DESCRIPTION: oh-my-zsh plugin file.
|
||||||
|
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com)
|
||||||
|
# VERSION: 1.0.0
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
if [[ -x "${commands[gwhoami]}" ]]; then
|
||||||
|
__gnu_utils() {
|
||||||
|
emulate -L zsh
|
||||||
|
local gcmds
|
||||||
|
local gcmd
|
||||||
|
local cmd
|
||||||
|
local prefix
|
||||||
|
|
||||||
|
# coreutils
|
||||||
|
gcmds=('g[' 'gbase64' 'gbasename' 'gcat' 'gchcon' 'gchgrp' 'gchmod'
|
||||||
|
'gchown' 'gchroot' 'gcksum' 'gcomm' 'gcp' 'gcsplit' 'gcut' 'gdate'
|
||||||
|
'gdd' 'gdf' 'gdir' 'gdircolors' 'gdirname' 'gdu' 'gecho' 'genv' 'gexpand'
|
||||||
|
'gexpr' 'gfactor' 'gfalse' 'gfmt' 'gfold' 'ggroups' 'ghead' 'ghostid'
|
||||||
|
'gid' 'ginstall' 'gjoin' 'gkill' 'glink' 'gln' 'glogname' 'gls' 'gmd5sum'
|
||||||
|
'gmkdir' 'gmkfifo' 'gmknod' 'gmktemp' 'gmv' 'gnice' 'gnl' 'gnohup' 'gnproc'
|
||||||
|
'god' 'gpaste' 'gpathchk' 'gpinky' 'gpr' 'gprintenv' 'gprintf' 'gptx' 'gpwd'
|
||||||
|
'greadlink' 'grm' 'grmdir' 'gruncon' 'gseq' 'gsha1sum' 'gsha224sum'
|
||||||
|
'gsha256sum' 'gsha384sum' 'gsha512sum' 'gshred' 'gshuf' 'gsleep' 'gsort'
|
||||||
|
'gsplit' 'gstat' 'gstty' 'gsum' 'gsync' 'gtac' 'gtail' 'gtee' 'gtest'
|
||||||
|
'gtimeout' 'gtouch' 'gtr' 'gtrue' 'gtruncate' 'gtsort' 'gtty' 'guname'
|
||||||
|
'gunexpand' 'guniq' 'gunlink' 'guptime' 'gusers' 'gvdir' 'gwc' 'gwho'
|
||||||
|
'gwhoami' 'gyes')
|
||||||
|
|
||||||
|
# Not part of coreutils, installed separately.
|
||||||
|
gcmds+=('gsed' 'gtar' 'gtime')
|
||||||
|
|
||||||
|
for gcmd in "${gcmds[@]}"; do
|
||||||
|
#
|
||||||
|
# This method allows for builtin commands to be primary but it's
|
||||||
|
# lost if hash -r or rehash -f is executed. Thus, those two
|
||||||
|
# functions have to be wrapped.
|
||||||
|
#
|
||||||
|
(( ${+commands[$gcmd]} )) && hash ${gcmd[2,-1]}=${commands[$gcmd]}
|
||||||
|
|
||||||
|
#
|
||||||
|
# This method generates wrapper functions.
|
||||||
|
# It will override shell builtins.
|
||||||
|
#
|
||||||
|
# (( ${+commands[$gcmd]} )) && \
|
||||||
|
# eval "function $gcmd[2,-1]() { \"${prefix}/${gcmd//"["/"\\["}\" \"\$@\"; }"
|
||||||
|
|
||||||
|
#
|
||||||
|
# This method is inflexible since the aliases are at risk of being
|
||||||
|
# overriden resulting in the BSD coreutils being called.
|
||||||
|
#
|
||||||
|
# (( ${+commands[$gcmd]} )) && \
|
||||||
|
# alias "$gcmd[2,-1]"="${prefix}/${gcmd//"["/"\\["}"
|
||||||
|
done
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
__gnu_utils;
|
||||||
|
|
||||||
|
function hash() {
|
||||||
|
if [[ "$*" =~ "-(r|f)" ]]; then
|
||||||
|
builtin hash "$@"
|
||||||
|
__gnu_utils
|
||||||
|
else
|
||||||
|
builtin hash "$@"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function rehash() {
|
||||||
|
if [[ "$*" =~ "-f" ]]; then
|
||||||
|
builtin rehash "$@"
|
||||||
|
__gnu_utils
|
||||||
|
else
|
||||||
|
builtin rehash "$@"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
fi
|
||||||
|
|
||||||
119
plugins/gradle/gradle.plugin.zsh
Normal file
119
plugins/gradle/gradle.plugin.zsh
Normal file
|
|
@ -0,0 +1,119 @@
|
||||||
|
#!zsh
|
||||||
|
##############################################################################
|
||||||
|
# A descriptive listing of core Gradle commands
|
||||||
|
############################################################################
|
||||||
|
function _gradle_core_commands() {
|
||||||
|
local ret=1 state
|
||||||
|
_arguments ':subcommand:->subcommand' && ret=0
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
subcommand)
|
||||||
|
subcommands=(
|
||||||
|
"properties:Display all project properties"
|
||||||
|
"tasks:Calculate and display all tasks"
|
||||||
|
"dependencies:Calculate and display all dependencies"
|
||||||
|
"projects:Discover and display all sub-projects"
|
||||||
|
"build:Build the project"
|
||||||
|
"help:Display help"
|
||||||
|
)
|
||||||
|
_describe -t subcommands 'gradle subcommands' subcommands && ret=0
|
||||||
|
esac
|
||||||
|
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
|
||||||
|
function _gradle_arguments() {
|
||||||
|
_arguments -C \
|
||||||
|
'-a[Do not rebuild project dependencies]' \
|
||||||
|
'-h[Help]' \
|
||||||
|
'-D[System property]' \
|
||||||
|
'-d[Log at the debug level]' \
|
||||||
|
'--gui[Launches the Gradle GUI app]' \
|
||||||
|
'--stop[Stop the Gradle daemon]' \
|
||||||
|
'--daemon[Use the Gradle daemon]' \
|
||||||
|
'--no-daemon[Do not use the Gradle daemon]' \
|
||||||
|
'--no-opt[Do not perform any task optimization]' \
|
||||||
|
'-i[Log at the info level]' \
|
||||||
|
'-m[Dry run]' \
|
||||||
|
'-P[Set a project property]' \
|
||||||
|
'--profile[Profile the build time]' \
|
||||||
|
'-q[Log at the quiet level (only show errors)]' \
|
||||||
|
'-v[Print the Gradle version info]' \
|
||||||
|
'-x[Specify a task to be excluded]' \
|
||||||
|
'*::command:->command' \
|
||||||
|
&& return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Are we in a directory containing a build.gradle file?
|
||||||
|
############################################################################
|
||||||
|
function in_gradle() {
|
||||||
|
if [[ -f build.gradle ]]; then
|
||||||
|
echo 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
############################################################################
|
||||||
|
# Define the stat_cmd command based on platform behavior
|
||||||
|
##########################################################################
|
||||||
|
stat -f%m . > /dev/null 2>&1
|
||||||
|
if [ "$?" = 0 ]; then
|
||||||
|
stat_cmd=(stat -f%m)
|
||||||
|
else
|
||||||
|
stat_cmd=(stat -L --format=%Y)
|
||||||
|
fi
|
||||||
|
|
||||||
|
############################################################################## Examine the build.gradle file to see if its
|
||||||
|
# timestamp has changed, and if so, regen
|
||||||
|
# the .gradle_tasks cache file
|
||||||
|
############################################################################
|
||||||
|
_gradle_does_task_list_need_generating () {
|
||||||
|
if [ ! -f .gradletasknamecache ]; then return 0;
|
||||||
|
else
|
||||||
|
accurate=$($stat_cmd .gradletasknamecache)
|
||||||
|
changed=$($stat_cmd build.gradle)
|
||||||
|
return $(expr $accurate '>=' $changed)
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Discover the gradle tasks by running "gradle tasks --all"
|
||||||
|
############################################################################
|
||||||
|
_gradle_tasks () {
|
||||||
|
if [ in_gradle ]; then
|
||||||
|
_gradle_arguments
|
||||||
|
if _gradle_does_task_list_need_generating; then
|
||||||
|
gradle tasks --all | grep "^[ ]*[a-zA-Z0-9]*\ -\ " | sed "s/ - .*$//" | sed "s/[\ ]*//" > .gradletasknamecache
|
||||||
|
fi
|
||||||
|
compadd -X "==== Gradle Tasks ====" `cat .gradletasknamecache`
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
_gradlew_tasks () {
|
||||||
|
if [ in_gradle ]; then
|
||||||
|
_gradle_arguments
|
||||||
|
if _gradle_does_task_list_need_generating; then
|
||||||
|
gradlew tasks --all | grep "^[ ]*[a-zA-Z0-9]*\ -\ " | sed "s/ - .*$//" | sed "s/[\ ]*//" > .gradletasknamecache
|
||||||
|
fi
|
||||||
|
compadd -X "==== Gradlew Tasks ====" `cat .gradletasknamecache`
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Register the completions against the gradle and gradlew commands
|
||||||
|
############################################################################
|
||||||
|
compdef _gradle_tasks gradle
|
||||||
|
compdef _gradlew_tasks gradlew
|
||||||
|
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# Open questions for future improvements:
|
||||||
|
# 1) Should 'gradle tasks' use --all or just the regular set?
|
||||||
|
# 2) Should gradlew use the same approach as gradle?
|
||||||
|
# 3) Should only the " - " be replaced with a colon so it can work
|
||||||
|
# with the richer descriptive method of _arguments?
|
||||||
|
# gradle tasks | grep "^[a-zA-Z0-9]*\ -\ " | sed "s/ - /\:/"
|
||||||
|
#############################################################################
|
||||||
54
plugins/grails/grails.plugin.zsh
Executable file
54
plugins/grails/grails.plugin.zsh
Executable file
|
|
@ -0,0 +1,54 @@
|
||||||
|
_enumerateGrailsScripts() {
|
||||||
|
# Default directoryies
|
||||||
|
directories=($GRAILS_HOME/scripts ~/.grails/scripts ./scripts)
|
||||||
|
|
||||||
|
# Check all of the plugins directories, if they exist
|
||||||
|
if [ -d plugins ]
|
||||||
|
then
|
||||||
|
directories+=(plugins/*/scripts)
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Enumerate all of the Groovy files
|
||||||
|
files=()
|
||||||
|
for dir in $directories;
|
||||||
|
do
|
||||||
|
if [ -d $dir ]
|
||||||
|
then
|
||||||
|
files+=($dir/[^_]*.groovy)
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Don't try to basename ()
|
||||||
|
if [ ${#files} -eq 0 ];
|
||||||
|
then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
# - Strip the path
|
||||||
|
# - Remove all scripts with a leading '_'
|
||||||
|
# - PackagePlugin_.groovy -> PackagePlugin
|
||||||
|
# - PackagePlugin -> Package-Plugin
|
||||||
|
# - Package-Plugin -> package-plugin
|
||||||
|
basename $files \
|
||||||
|
| sed -E -e 's/^_?([^_]+)_?.groovy/\1/'\
|
||||||
|
-e 's/([a-z])([A-Z])/\1-\2/g' \
|
||||||
|
| tr "[:upper:]" "[:lower:]" \
|
||||||
|
| sort \
|
||||||
|
| uniq
|
||||||
|
}
|
||||||
|
|
||||||
|
_grails() {
|
||||||
|
if (( CURRENT == 2 )); then
|
||||||
|
scripts=( $(_enumerateGrailsScripts) )
|
||||||
|
|
||||||
|
if [ ${#scripts} -ne 0 ];
|
||||||
|
then
|
||||||
|
_multi_parts / scripts
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
_files
|
||||||
|
}
|
||||||
|
|
||||||
|
compdef _grails grails
|
||||||
158
plugins/heroku/_heroku
Normal file
158
plugins/heroku/_heroku
Normal file
|
|
@ -0,0 +1,158 @@
|
||||||
|
#compdef heroku
|
||||||
|
|
||||||
|
# Heroku Autocomplete plugin for Oh-My-Zsh
|
||||||
|
# Requires: The Heroku client gem (https://github.com/heroku/heroku)
|
||||||
|
# Author: Ali B. (http://awhitebox.com)
|
||||||
|
|
||||||
|
local -a _1st_arguments
|
||||||
|
_1st_arguments=(
|
||||||
|
"account\:confirm_billing":"Confirm that your account can be billed at the end of the month"
|
||||||
|
"addons":"list installed addons"
|
||||||
|
"addons\:list":"list all available addons"
|
||||||
|
"addons\:add":"install an addon"
|
||||||
|
"addons\:upgrade":"upgrade an existing addon"
|
||||||
|
"addons\:downgrade":"downgrade an existing addon"
|
||||||
|
"addons\:remove":"uninstall an addon"
|
||||||
|
"addons\:open":"open an addon's dashboard in your browser"
|
||||||
|
"apps":"list your apps"
|
||||||
|
"apps\:info":"show detailed app information"
|
||||||
|
"apps\:create":"create a new app"
|
||||||
|
"apps\:rename":"rename the app"
|
||||||
|
"apps\:open":"open the app in a web browser"
|
||||||
|
"apps\:destroy":"permanently destroy an app"
|
||||||
|
"auth\:login":"log in with your heroku credentials"
|
||||||
|
"auth\:logout":"clear local authentication credentials"
|
||||||
|
"config":"display the config vars for an app"
|
||||||
|
"config\:add":"add one or more config vars"
|
||||||
|
"config\:remove":"remove a config var"
|
||||||
|
"db\:push":"push local data up to your app"
|
||||||
|
"db\:pull":"pull heroku data down into your local database"
|
||||||
|
"domains":"list custom domains for an app"
|
||||||
|
"domains\:add":"add a custom domain to an app"
|
||||||
|
"domains\:remove":"remove a custom domain from an app"
|
||||||
|
"domains\:clear":"remove all custom domains from an app"
|
||||||
|
"help":"list available commands or display help for a specific command"
|
||||||
|
"keys":"display keys for the current user"
|
||||||
|
"keys\:add":"add a key for the current user"
|
||||||
|
"keys\:remove":"remove a key from the current user"
|
||||||
|
"keys\:clear":"remove all authentication keys from the current user"
|
||||||
|
"logs":"display recent log output"
|
||||||
|
"logs\:cron":"DEPRECATED: display cron logs from legacy logging"
|
||||||
|
"logs\:drains":"manage syslog drains"
|
||||||
|
"maintenance\:on":"put the app into maintenance mode"
|
||||||
|
"maintenance\:off":"take the app out of maintenance mode"
|
||||||
|
"pg\:info":"display database information"
|
||||||
|
"pg\:ingress":"allow direct connections to the database from this IP for one minute"
|
||||||
|
"pg\:promote":"sets DATABASE as your DATABASE_URL"
|
||||||
|
"pg\:psql":"open a psql shell to the database"
|
||||||
|
"pg\:reset":"delete all data in DATABASE"
|
||||||
|
"pg\:unfollow":"stop a replica from following and make it a read/write database"
|
||||||
|
"pg\:wait":"monitor database creation, exit when complete"
|
||||||
|
"pgbackups":"list captured backups"
|
||||||
|
"pgbackups\:url":"get a temporary URL for a backup"
|
||||||
|
"pgbackups\:capture":"capture a backup from a database id"
|
||||||
|
"pgbackups\:restore":"restore a backup to a database"
|
||||||
|
"pgbackups\:destroy":"destroys a backup"
|
||||||
|
"plugins":"list installed plugins"
|
||||||
|
"plugins\:install":"install a plugin"
|
||||||
|
"plugins\:uninstall":"uninstall a plugin"
|
||||||
|
"ps\:dynos":"scale to QTY web processes"
|
||||||
|
"ps\:workers":"scale to QTY background processes"
|
||||||
|
"ps":"list processes for an app"
|
||||||
|
"ps\:restart":"restart an app process"
|
||||||
|
"ps\:scale":"scale processes by the given amount"
|
||||||
|
"releases":"list releases"
|
||||||
|
"releases\:info":"view detailed information for a release"
|
||||||
|
"rollback":"roll back to an older release"
|
||||||
|
"run":"run an attached process"
|
||||||
|
"run\:rake":"remotely execute a rake command"
|
||||||
|
"run\:console":"open a remote console session"
|
||||||
|
"sharing":"list collaborators on an app"
|
||||||
|
"sharing\:add":"add a collaborator to an app"
|
||||||
|
"sharing\:remove":"remove a collaborator from an app"
|
||||||
|
"sharing\:transfer":"transfer an app to a new owner"
|
||||||
|
"ssl":"list certificates for an app"
|
||||||
|
"ssl\:add":"add an ssl certificate to an app"
|
||||||
|
"ssl\:remove":"remove an ssl certificate from an app"
|
||||||
|
"ssl\:clear":"remove all ssl certificates from an app"
|
||||||
|
"stack":"show the list of available stacks"
|
||||||
|
"stack\:migrate":"prepare migration of this app to a new stack"
|
||||||
|
"version":"show heroku client version"
|
||||||
|
)
|
||||||
|
|
||||||
|
_arguments '*:: :->command'
|
||||||
|
|
||||||
|
if (( CURRENT == 1 )); then
|
||||||
|
_describe -t commands "heroku command" _1st_arguments
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
local -a _command_args
|
||||||
|
case "$words[1]" in
|
||||||
|
apps:info)
|
||||||
|
_command_args=(
|
||||||
|
'(-r|--raw)'{-r,--raw}'[output info as raw key/value pairs]' \
|
||||||
|
)
|
||||||
|
;;
|
||||||
|
apps:create)
|
||||||
|
_command_args=(
|
||||||
|
'(-a|--addons)'{-a,--addons}'[a list of addons to install]' \
|
||||||
|
'(-r|--remote)'{-r,--remote}'[the git remote to create, default "heroku"]' \
|
||||||
|
'(-s|--stack)'{-s,--stack}'[the stack on which to create the app]' \
|
||||||
|
)
|
||||||
|
;;
|
||||||
|
config)
|
||||||
|
_command_args=(
|
||||||
|
'(-s|--shell)'{-s,--shell}'[output config vars in shell format]' \
|
||||||
|
)
|
||||||
|
;;
|
||||||
|
db:push)
|
||||||
|
_command_args=(
|
||||||
|
'(-c|--chunksize)'{-c,--chunksize}'[specify the number of rows to send in each batch]' \
|
||||||
|
'(-d|--debug)'{-d,--debug}'[enable debugging output]' \
|
||||||
|
'(-e|--exclude)'{-e,--exclude}'[exclude the specified tables from the push]' \
|
||||||
|
'(-f|--filter)'{-f,--filter}'[only push certain tables]' \
|
||||||
|
'(-r|--resume)'{-r,--resume}'[resume transfer described by a .dat file]' \
|
||||||
|
'(-t|--tables)'{-t,--tables}'[only push the specified tables]' \
|
||||||
|
)
|
||||||
|
;;
|
||||||
|
db:pull)
|
||||||
|
_command_args=(
|
||||||
|
'(-c|--chunksize)'{-c,--chunksize}'[specify the number of rows to send in each batch]' \
|
||||||
|
'(-d|--debug)'{-d,--debug}'[enable debugging output]' \
|
||||||
|
'(-e|--exclude)'{-e,--exclude}'[exclude the specified tables from the pull]' \
|
||||||
|
'(-f|--filter)'{-f,--filter}'[only pull certain tables]' \
|
||||||
|
'(-r|--resume)'{-r,--resume}'[resume transfer described by a .dat file]' \
|
||||||
|
'(-t|--tables)'{-t,--tables}'[only pull the specified tables]' \
|
||||||
|
)
|
||||||
|
;;
|
||||||
|
keys)
|
||||||
|
_command_args=(
|
||||||
|
'(-l|--long)'{-l,--long}'[display extended information for each key]' \
|
||||||
|
)
|
||||||
|
;;
|
||||||
|
logs)
|
||||||
|
_command_args=(
|
||||||
|
'(-n|--num)'{-n,--num}'[the number of lines to display]' \
|
||||||
|
'(-p|--ps)'{-p,--ps}'[only display logs from the given process]' \
|
||||||
|
'(-s|--source)'{-s,--source}'[only display logs from the given source]' \
|
||||||
|
'(-t|--tail)'{-t,--tail}'[continually stream logs]' \
|
||||||
|
)
|
||||||
|
;;
|
||||||
|
pgbackups:capture)
|
||||||
|
_command_args=(
|
||||||
|
'(-e|--expire)'{-e,--expire}'[if no slots are available to capture, delete the oldest backup to make room]' \
|
||||||
|
)
|
||||||
|
;;
|
||||||
|
stack)
|
||||||
|
_command_args=(
|
||||||
|
'(-a|--all)'{-a,--all}'[include deprecated stacks]' \
|
||||||
|
)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
_arguments \
|
||||||
|
$_command_args \
|
||||||
|
'(--app)--app[the app name]' \
|
||||||
|
&& return 0
|
||||||
|
|
||||||
7
plugins/history-substring-search/README
Normal file
7
plugins/history-substring-search/README
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
To activate this script, load it into an interactive ZSH session:
|
||||||
|
|
||||||
|
% source history-substring-search.zsh
|
||||||
|
|
||||||
|
See the "history-substring-search.zsh" file for more information:
|
||||||
|
|
||||||
|
% sed -n '2,/^$/s/^#//p' history-substring-search.zsh | more
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
# This file integrates the history-substring-search script into oh-my-zsh.
|
||||||
|
|
||||||
|
source "$ZSH/plugins/history-substring-search/history-substring-search.zsh"
|
||||||
|
|
||||||
|
if test "$CASE_SENSITIVE" = true; then
|
||||||
|
unset HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$DISABLE_COLOR" = true; then
|
||||||
|
unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
|
||||||
|
unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
|
||||||
|
fi
|
||||||
642
plugins/history-substring-search/history-substring-search.zsh
Normal file
642
plugins/history-substring-search/history-substring-search.zsh
Normal file
|
|
@ -0,0 +1,642 @@
|
||||||
|
#!/usr/bin/env zsh
|
||||||
|
#
|
||||||
|
# This is a clean-room implementation of the Fish[1] shell's history search
|
||||||
|
# feature, where you can type in any part of any previously entered command
|
||||||
|
# and press the UP and DOWN arrow keys to cycle through the matching commands.
|
||||||
|
#
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# Usage
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# 1. Load this script into your interactive ZSH session:
|
||||||
|
#
|
||||||
|
# % source history-substring-search.zsh
|
||||||
|
#
|
||||||
|
# If you want to use the zsh-syntax-highlighting[6] script along with this
|
||||||
|
# script, then make sure that you load it *before* you load this script:
|
||||||
|
#
|
||||||
|
# % source zsh-syntax-highlighting.zsh
|
||||||
|
# % source history-substring-search.zsh
|
||||||
|
#
|
||||||
|
# 2. Type any part of any previous command and then:
|
||||||
|
#
|
||||||
|
# * Press the UP arrow key to select the nearest command that (1) contains
|
||||||
|
# your query and (2) is older than the current command in the command
|
||||||
|
# history.
|
||||||
|
#
|
||||||
|
# * Press the DOWN arrow key to select the nearest command that (1)
|
||||||
|
# contains your query and (2) is newer than the current command in the
|
||||||
|
# command history.
|
||||||
|
#
|
||||||
|
# * Press ^U (the Control and U keys simultaneously) to abort the search.
|
||||||
|
#
|
||||||
|
# 3. If a matching command spans more than one line of text, press the LEFT
|
||||||
|
# arrow key to move the cursor away from the end of the command, and then:
|
||||||
|
#
|
||||||
|
# * Press the UP arrow key to move the cursor to the line above. When the
|
||||||
|
# cursor reaches the first line of the command, pressing the UP arrow
|
||||||
|
# key again will cause this script to perform another search.
|
||||||
|
#
|
||||||
|
# * Press the DOWN arrow key to move the cursor to the line below. When
|
||||||
|
# the cursor reaches the last line of the command, pressing the DOWN
|
||||||
|
# arrow key again will cause this script to perform another search.
|
||||||
|
#
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# Configuration
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# This script defines the following global variables. You may override their
|
||||||
|
# default values only after having loaded this script into your ZSH session.
|
||||||
|
#
|
||||||
|
# * HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND is a global variable that defines
|
||||||
|
# how the query should be highlighted inside a matching command. Its default
|
||||||
|
# value causes this script to highlight using bold, white text on a magenta
|
||||||
|
# background. See the "Character Highlighting" section in the zshzle(1) man
|
||||||
|
# page to learn about the kinds of values you may assign to this variable.
|
||||||
|
#
|
||||||
|
# * HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND is a global variable that
|
||||||
|
# defines how the query should be highlighted when no commands in the
|
||||||
|
# history match it. Its default value causes this script to highlight using
|
||||||
|
# bold, white text on a red background. See the "Character Highlighting"
|
||||||
|
# section in the zshzle(1) man page to learn about the kinds of values you
|
||||||
|
# may assign to this variable.
|
||||||
|
#
|
||||||
|
# * HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS is a global variable that defines
|
||||||
|
# how the command history will be searched for your query. Its default value
|
||||||
|
# causes this script to perform a case-insensitive search. See the "Globbing
|
||||||
|
# Flags" section in the zshexpn(1) man page to learn about the kinds of
|
||||||
|
# values you may assign to this variable.
|
||||||
|
#
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# History
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# This script was originally written by Peter Stephenson[2], who published it
|
||||||
|
# to the ZSH users mailing list (thereby making it public domain) in September
|
||||||
|
# 2009. It was later revised by Guido van Steen and released under the BSD
|
||||||
|
# license (see below) as part of the fizsh[3] project in January 2011.
|
||||||
|
#
|
||||||
|
# It was later extracted from fizsh[3] release 1.0.1, refactored heavily, and
|
||||||
|
# repackaged as both an oh-my-zsh plugin[4] and as an independently loadable
|
||||||
|
# ZSH script[5] by Suraj N. Kurapati in 2011.
|
||||||
|
#
|
||||||
|
# It was further developed[4] by Guido van Steen, Suraj N. Kurapati, Sorin
|
||||||
|
# Ionescu, and Vincent Guerci in 2011.
|
||||||
|
#
|
||||||
|
# [1]: http://fishshell.com
|
||||||
|
# [2]: http://www.zsh.org/mla/users/2009/msg00818.html
|
||||||
|
# [3]: http://sourceforge.net/projects/fizsh/
|
||||||
|
# [4]: https://github.com/robbyrussell/oh-my-zsh/pull/215
|
||||||
|
# [5]: https://github.com/sunaku/zsh-history-substring-search
|
||||||
|
# [6]: https://github.com/nicoulaj/zsh-syntax-highlighting
|
||||||
|
#
|
||||||
|
##############################################################################
|
||||||
|
#
|
||||||
|
# Copyright (c) 2009 Peter Stephenson
|
||||||
|
# Copyright (c) 2011 Guido van Steen
|
||||||
|
# Copyright (c) 2011 Suraj N. Kurapati
|
||||||
|
# Copyright (c) 2011 Sorin Ionescu
|
||||||
|
# Copyright (c) 2011 Vincent Guerci
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
#
|
||||||
|
# * Redistributions in binary form must reproduce the above
|
||||||
|
# copyright notice, this list of conditions and the following
|
||||||
|
# disclaimer in the documentation and/or other materials provided
|
||||||
|
# with the distribution.
|
||||||
|
#
|
||||||
|
# * Neither the name of the FIZSH nor the names of its contributors
|
||||||
|
# may be used to endorse or promote products derived from this
|
||||||
|
# software without specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
#
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# configuration variables
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND='bg=magenta,fg=white,bold'
|
||||||
|
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND='bg=red,fg=white,bold'
|
||||||
|
HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS='i'
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# the main ZLE widgets
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
function history-substring-search-up() {
|
||||||
|
_history-substring-search-begin
|
||||||
|
|
||||||
|
_history-substring-search-up-history ||
|
||||||
|
_history-substring-search-up-buffer ||
|
||||||
|
_history-substring-search-up-search
|
||||||
|
|
||||||
|
_history-substring-search-end
|
||||||
|
}
|
||||||
|
|
||||||
|
function history-substring-search-down() {
|
||||||
|
_history-substring-search-begin
|
||||||
|
|
||||||
|
_history-substring-search-down-history ||
|
||||||
|
_history-substring-search-down-buffer ||
|
||||||
|
_history-substring-search-down-search
|
||||||
|
|
||||||
|
_history-substring-search-end
|
||||||
|
}
|
||||||
|
|
||||||
|
zle -N history-substring-search-up
|
||||||
|
zle -N history-substring-search-down
|
||||||
|
|
||||||
|
bindkey '\e[A' history-substring-search-up
|
||||||
|
bindkey '\e[B' history-substring-search-down
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
# implementation details
|
||||||
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
setopt extendedglob
|
||||||
|
zmodload -F zsh/parameter
|
||||||
|
|
||||||
|
#
|
||||||
|
# We have to "override" some keys and widgets if the
|
||||||
|
# zsh-syntax-highlighting plugin has not been loaded:
|
||||||
|
#
|
||||||
|
# https://github.com/nicoulaj/zsh-syntax-highlighting
|
||||||
|
#
|
||||||
|
if [[ $+functions[_zsh_highlight] -eq 0 ]]; then
|
||||||
|
#
|
||||||
|
# Dummy implementation of _zsh_highlight()
|
||||||
|
# that simply removes existing highlights
|
||||||
|
#
|
||||||
|
function _zsh_highlight() {
|
||||||
|
region_highlight=()
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Remove existing highlights when the user
|
||||||
|
# inserts printable characters into $BUFFER
|
||||||
|
#
|
||||||
|
function ordinary-key-press() {
|
||||||
|
if [[ $KEYS == [[:print:]] ]]; then
|
||||||
|
region_highlight=()
|
||||||
|
fi
|
||||||
|
zle .self-insert
|
||||||
|
}
|
||||||
|
zle -N self-insert ordinary-key-press
|
||||||
|
|
||||||
|
#
|
||||||
|
# Override ZLE widgets to invoke _zsh_highlight()
|
||||||
|
#
|
||||||
|
# https://github.com/nicoulaj/zsh-syntax-highlighting/blob/
|
||||||
|
# bb7fcb79fad797a40077bebaf6f4e4a93c9d8163/zsh-syntax-highlighting.zsh#L121
|
||||||
|
#
|
||||||
|
#--------------8<-------------------8<-------------------8<-----------------
|
||||||
|
#
|
||||||
|
# Copyright (c) 2010-2011 zsh-syntax-highlighting contributors
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions are
|
||||||
|
# met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
#
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer in the
|
||||||
|
# documentation and/or other materials provided with the distribution.
|
||||||
|
#
|
||||||
|
# * Neither the name of the zsh-syntax-highlighting contributors nor the
|
||||||
|
# names of its contributors may be used to endorse or promote products
|
||||||
|
# derived from this software without specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||||
|
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||||
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||||
|
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
# Load ZSH module zsh/zleparameter, needed to override user defined widgets.
|
||||||
|
zmodload zsh/zleparameter 2>/dev/null || {
|
||||||
|
echo 'zsh-syntax-highlighting: failed loading zsh/zleparameter, exiting.' >&2
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
|
||||||
|
# Override ZLE widgets to make them invoke _zsh_highlight.
|
||||||
|
for event in ${${(f)"$(zle -la)"}:#(_*|orig-*|.run-help|.which-command)}; do
|
||||||
|
if [[ "$widgets[$event]" == completion:* ]]; then
|
||||||
|
eval "zle -C orig-$event ${${${widgets[$event]}#*:}/:/ } ; $event() { builtin zle orig-$event && _zsh_highlight } ; zle -N $event"
|
||||||
|
else
|
||||||
|
case $event in
|
||||||
|
accept-and-menu-complete)
|
||||||
|
eval "$event() { builtin zle .$event && _zsh_highlight } ; zle -N $event"
|
||||||
|
;;
|
||||||
|
|
||||||
|
# The following widgets should NOT remove any previously
|
||||||
|
# applied highlighting. Therefore we do not remap them.
|
||||||
|
.forward-char|.backward-char|.up-line-or-history|.down-line-or-history)
|
||||||
|
;;
|
||||||
|
|
||||||
|
.*)
|
||||||
|
clean_event=$event[2,${#event}] # Remove the leading dot in the event name
|
||||||
|
case ${widgets[$clean_event]-} in
|
||||||
|
(completion|user):*)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
eval "$clean_event() { builtin zle $event && _zsh_highlight } ; zle -N $clean_event"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
unset event clean_event
|
||||||
|
#-------------->8------------------->8------------------->8-----------------
|
||||||
|
fi
|
||||||
|
|
||||||
|
function _history-substring-search-begin() {
|
||||||
|
_history_substring_search_move_cursor_eol=false
|
||||||
|
_history_substring_search_query_highlight=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Continue using the previous $_history_substring_search_result by default,
|
||||||
|
# unless the current query was cleared or a new/different query was entered.
|
||||||
|
#
|
||||||
|
if [[ -z $BUFFER || $BUFFER != $_history_substring_search_result ]]; then
|
||||||
|
#
|
||||||
|
# For the purpose of highlighting we will also keep
|
||||||
|
# a version without doubly-escaped meta characters.
|
||||||
|
#
|
||||||
|
_history_substring_search_query=$BUFFER
|
||||||
|
|
||||||
|
#
|
||||||
|
# $BUFFER contains the text that is in the command-line currently.
|
||||||
|
# we put an extra "\\" before meta characters such as "\(" and "\)",
|
||||||
|
# so that they become "\\\(" and "\\\)".
|
||||||
|
#
|
||||||
|
_history_substring_search_query_escaped=${BUFFER//(#m)[\][()|\\*?#<>~^]/\\$MATCH}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Find all occurrences of the search query in the history file.
|
||||||
|
#
|
||||||
|
# (k) turns it an array of line numbers.
|
||||||
|
#
|
||||||
|
# (on) seems to remove duplicates, which are default
|
||||||
|
# options. They can be turned off by (ON).
|
||||||
|
#
|
||||||
|
_history_substring_search_matches=(${(kon)history[(R)(#$HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS)*${_history_substring_search_query_escaped}*]})
|
||||||
|
|
||||||
|
#
|
||||||
|
# Define the range of values that $_history_substring_search_match_index
|
||||||
|
# can take: [0, $_history_substring_search_matches_count_plus].
|
||||||
|
#
|
||||||
|
_history_substring_search_matches_count=$#_history_substring_search_matches
|
||||||
|
_history_substring_search_matches_count_plus=$(( _history_substring_search_matches_count + 1 ))
|
||||||
|
_history_substring_search_matches_count_sans=$(( _history_substring_search_matches_count - 1 ))
|
||||||
|
|
||||||
|
#
|
||||||
|
# If $_history_substring_search_match_index is equal to
|
||||||
|
# $_history_substring_search_matches_count_plus, this indicates that we
|
||||||
|
# are beyond the beginning of $_history_substring_search_matches.
|
||||||
|
#
|
||||||
|
# If $_history_substring_search_match_index is equal to 0, this indicates
|
||||||
|
# that we are beyond the end of $_history_substring_search_matches.
|
||||||
|
#
|
||||||
|
# If we have initially pressed "up" we have to initialize
|
||||||
|
# $_history_substring_search_match_index to
|
||||||
|
# $_history_substring_search_matches_count_plus so that it will be
|
||||||
|
# decreased to $_history_substring_search_matches_count.
|
||||||
|
#
|
||||||
|
# If we have initially pressed "down" we have to initialize
|
||||||
|
# $_history_substring_search_match_index to
|
||||||
|
# $_history_substring_search_matches_count so that it will be increased to
|
||||||
|
# $_history_substring_search_matches_count_plus.
|
||||||
|
#
|
||||||
|
if [[ $WIDGET == history-substring-search-down ]]; then
|
||||||
|
_history_substring_search_match_index=$_history_substring_search_matches_count
|
||||||
|
else
|
||||||
|
_history_substring_search_match_index=$_history_substring_search_matches_count_plus
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function _history-substring-search-end() {
|
||||||
|
_history_substring_search_result=$BUFFER
|
||||||
|
|
||||||
|
# move the cursor to the end of the command line
|
||||||
|
if [[ $_history_substring_search_move_cursor_eol == true ]]; then
|
||||||
|
CURSOR=${#BUFFER}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# highlight command line using zsh-syntax-highlighting
|
||||||
|
_zsh_highlight
|
||||||
|
|
||||||
|
# highlight the search query inside the command line
|
||||||
|
if [[ -n $_history_substring_search_query_highlight && -n $_history_substring_search_query ]]; then
|
||||||
|
#
|
||||||
|
# The following expression yields a variable $MBEGIN, which
|
||||||
|
# indicates the begin position + 1 of the first occurrence
|
||||||
|
# of _history_substring_search_query_escaped in $BUFFER.
|
||||||
|
#
|
||||||
|
: ${(S)BUFFER##(#m$HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS)($_history_substring_search_query##)}
|
||||||
|
local begin=$(( MBEGIN - 1 ))
|
||||||
|
local end=$(( begin + $#_history_substring_search_query ))
|
||||||
|
region_highlight+=("$begin $end $_history_substring_search_query_highlight")
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For debugging purposes:
|
||||||
|
# zle -R "mn: "$_history_substring_search_match_index" m#: "${#_history_substring_search_matches}
|
||||||
|
# read -k -t 200 && zle -U $REPLY
|
||||||
|
|
||||||
|
# Exit successfully from the history-substring-search-* widgets.
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
function _history-substring-search-up-buffer() {
|
||||||
|
#
|
||||||
|
# Check if the UP arrow was pressed to move the cursor within a multi-line
|
||||||
|
# buffer. This amounts to three tests:
|
||||||
|
#
|
||||||
|
# 1. $#buflines -gt 1.
|
||||||
|
#
|
||||||
|
# 2. $CURSOR -ne $#BUFFER.
|
||||||
|
#
|
||||||
|
# 3. Check if we are on the first line of the current multi-line buffer.
|
||||||
|
# If so, pressing UP would amount to leaving the multi-line buffer.
|
||||||
|
#
|
||||||
|
# We check this by adding an extra "x" to $LBUFFER, which makes
|
||||||
|
# sure that xlbuflines is always equal to the number of lines
|
||||||
|
# until $CURSOR (including the line with the cursor on it).
|
||||||
|
#
|
||||||
|
local buflines XLBUFFER xlbuflines
|
||||||
|
buflines=(${(f)BUFFER})
|
||||||
|
XLBUFFER=$LBUFFER"x"
|
||||||
|
xlbuflines=(${(f)XLBUFFER})
|
||||||
|
|
||||||
|
if [[ $#buflines -gt 1 && $CURSOR -ne $#BUFFER && $#xlbuflines -ne 1 ]]; then
|
||||||
|
zle up-line-or-history
|
||||||
|
return true
|
||||||
|
fi
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
|
||||||
|
function _history-substring-search-down-buffer() {
|
||||||
|
#
|
||||||
|
# Check if the DOWN arrow was pressed to move the cursor within a multi-line
|
||||||
|
# buffer. This amounts to three tests:
|
||||||
|
#
|
||||||
|
# 1. $#buflines -gt 1.
|
||||||
|
#
|
||||||
|
# 2. $CURSOR -ne $#BUFFER.
|
||||||
|
#
|
||||||
|
# 3. Check if we are on the last line of the current multi-line buffer.
|
||||||
|
# If so, pressing DOWN would amount to leaving the multi-line buffer.
|
||||||
|
#
|
||||||
|
# We check this by adding an extra "x" to $RBUFFER, which makes
|
||||||
|
# sure that xrbuflines is always equal to the number of lines
|
||||||
|
# from $CURSOR (including the line with the cursor on it).
|
||||||
|
#
|
||||||
|
local buflines XRBUFFER xrbuflines
|
||||||
|
buflines=(${(f)BUFFER})
|
||||||
|
XRBUFFER="x"$RBUFFER
|
||||||
|
xrbuflines=(${(f)XRBUFFER})
|
||||||
|
|
||||||
|
if [[ $#buflines -gt 1 && $CURSOR -ne $#BUFFER && $#xrbuflines -ne 1 ]]; then
|
||||||
|
zle down-line-or-history
|
||||||
|
return true
|
||||||
|
fi
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
|
||||||
|
function _history-substring-search-up-history() {
|
||||||
|
#
|
||||||
|
# Behave like up in ZSH, except clear the $BUFFER
|
||||||
|
# when beginning of history is reached like in Fish.
|
||||||
|
#
|
||||||
|
if [[ -z $_history_substring_search_query ]]; then
|
||||||
|
|
||||||
|
# we have reached the absolute top of history
|
||||||
|
if [[ $HISTNO -eq 1 ]]; then
|
||||||
|
BUFFER=
|
||||||
|
|
||||||
|
# going up from somewhere below the top of history
|
||||||
|
else
|
||||||
|
zle up-history
|
||||||
|
fi
|
||||||
|
|
||||||
|
return true
|
||||||
|
fi
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
|
||||||
|
function _history-substring-search-down-history() {
|
||||||
|
#
|
||||||
|
# Behave like down-history in ZSH, except clear the
|
||||||
|
# $BUFFER when end of history is reached like in Fish.
|
||||||
|
#
|
||||||
|
if [[ -z $_history_substring_search_query ]]; then
|
||||||
|
|
||||||
|
# going down from the absolute top of history
|
||||||
|
if [[ $HISTNO -eq 1 && -z $BUFFER ]]; then
|
||||||
|
BUFFER=${history[1]}
|
||||||
|
_history_substring_search_move_cursor_eol=true
|
||||||
|
|
||||||
|
# going down from somewhere above the bottom of history
|
||||||
|
else
|
||||||
|
zle down-history
|
||||||
|
fi
|
||||||
|
|
||||||
|
return true
|
||||||
|
fi
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
|
||||||
|
function _history-substring-search-up-search() {
|
||||||
|
_history_substring_search_move_cursor_eol=true
|
||||||
|
|
||||||
|
#
|
||||||
|
# Highlight matches during history-substring-up-search:
|
||||||
|
#
|
||||||
|
# The following constants have been initialized in
|
||||||
|
# _history-substring-search-up/down-search():
|
||||||
|
#
|
||||||
|
# $_history_substring_search_matches is the current list of matches
|
||||||
|
# $_history_substring_search_matches_count is the current number of matches
|
||||||
|
# $_history_substring_search_matches_count_plus is the current number of matches + 1
|
||||||
|
# $_history_substring_search_matches_count_sans is the current number of matches - 1
|
||||||
|
# $_history_substring_search_match_index is the index of the current match
|
||||||
|
#
|
||||||
|
# The range of values that $_history_substring_search_match_index can take
|
||||||
|
# is: [0, $_history_substring_search_matches_count_plus]. A value of 0
|
||||||
|
# indicates that we are beyond the end of
|
||||||
|
# $_history_substring_search_matches. A value of
|
||||||
|
# $_history_substring_search_matches_count_plus indicates that we are beyond
|
||||||
|
# the beginning of $_history_substring_search_matches.
|
||||||
|
#
|
||||||
|
# In _history-substring-search-up-search() the initial value of
|
||||||
|
# $_history_substring_search_match_index is
|
||||||
|
# $_history_substring_search_matches_count_plus. This value is set in
|
||||||
|
# _history-substring-search-begin(). _history-substring-search-up-search()
|
||||||
|
# will initially decrease it to $_history_substring_search_matches_count.
|
||||||
|
#
|
||||||
|
if [[ $_history_substring_search_match_index -ge 2 ]]; then
|
||||||
|
#
|
||||||
|
# Highlight the next match:
|
||||||
|
#
|
||||||
|
# 1. Decrease the value of $_history_substring_search_match_index.
|
||||||
|
#
|
||||||
|
# 2. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
|
||||||
|
# to highlight the current buffer.
|
||||||
|
#
|
||||||
|
(( _history_substring_search_match_index-- ))
|
||||||
|
BUFFER=$history[$_history_substring_search_matches[$_history_substring_search_match_index]]
|
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
|
||||||
|
|
||||||
|
elif [[ $_history_substring_search_match_index -eq 1 ]]; then
|
||||||
|
#
|
||||||
|
# We will move beyond the end of $_history_substring_search_matches:
|
||||||
|
#
|
||||||
|
# 1. Decrease the value of $_history_substring_search_match_index.
|
||||||
|
#
|
||||||
|
# 2. Save the current buffer in $_history_substring_search_old_buffer,
|
||||||
|
# so that it can be retrieved by
|
||||||
|
# _history-substring-search-down-search() later.
|
||||||
|
#
|
||||||
|
# 3. Make $BUFFER equal to $_history_substring_search_query.
|
||||||
|
#
|
||||||
|
# 4. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
|
||||||
|
# to highlight the current buffer.
|
||||||
|
#
|
||||||
|
(( _history_substring_search_match_index-- ))
|
||||||
|
_history_substring_search_old_buffer=$BUFFER
|
||||||
|
BUFFER=$_history_substring_search_query
|
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
|
||||||
|
|
||||||
|
elif [[ $_history_substring_search_match_index -eq $_history_substring_search_matches_count_plus ]]; then
|
||||||
|
#
|
||||||
|
# We were beyond the beginning of $_history_substring_search_matches but
|
||||||
|
# UP makes us move back to $_history_substring_search_matches:
|
||||||
|
#
|
||||||
|
# 1. Decrease the value of $_history_substring_search_match_index.
|
||||||
|
#
|
||||||
|
# 2. Restore $BUFFER from $_history_substring_search_old_buffer.
|
||||||
|
#
|
||||||
|
# 3. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
|
||||||
|
# to highlight the current buffer.
|
||||||
|
#
|
||||||
|
(( _history_substring_search_match_index-- ))
|
||||||
|
BUFFER=$_history_substring_search_old_buffer
|
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function _history-substring-search-down-search() {
|
||||||
|
_history_substring_search_move_cursor_eol=true
|
||||||
|
|
||||||
|
#
|
||||||
|
# Highlight matches during history-substring-up-search:
|
||||||
|
#
|
||||||
|
# The following constants have been initialized in
|
||||||
|
# _history-substring-search-up/down-search():
|
||||||
|
#
|
||||||
|
# $_history_substring_search_matches is the current list of matches
|
||||||
|
# $_history_substring_search_matches_count is the current number of matches
|
||||||
|
# $_history_substring_search_matches_count_plus is the current number of matches + 1
|
||||||
|
# $_history_substring_search_matches_count_sans is the current number of matches - 1
|
||||||
|
# $_history_substring_search_match_index is the index of the current match
|
||||||
|
#
|
||||||
|
# The range of values that $_history_substring_search_match_index can take
|
||||||
|
# is: [0, $_history_substring_search_matches_count_plus]. A value of 0
|
||||||
|
# indicates that we are beyond the end of
|
||||||
|
# $_history_substring_search_matches. A value of
|
||||||
|
# $_history_substring_search_matches_count_plus indicates that we are beyond
|
||||||
|
# the beginning of $_history_substring_search_matches.
|
||||||
|
#
|
||||||
|
# In _history-substring-search-down-search() the initial value of
|
||||||
|
# $_history_substring_search_match_index is
|
||||||
|
# $_history_substring_search_matches_count. This value is set in
|
||||||
|
# _history-substring-search-begin().
|
||||||
|
# _history-substring-search-down-search() will initially increase it to
|
||||||
|
# $_history_substring_search_matches_count_plus.
|
||||||
|
#
|
||||||
|
if [[ $_history_substring_search_match_index -le $_history_substring_search_matches_count_sans ]]; then
|
||||||
|
#
|
||||||
|
# Highlight the next match:
|
||||||
|
#
|
||||||
|
# 1. Increase $_history_substring_search_match_index by 1.
|
||||||
|
#
|
||||||
|
# 2. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
|
||||||
|
# to highlight the current buffer.
|
||||||
|
#
|
||||||
|
(( _history_substring_search_match_index++ ))
|
||||||
|
BUFFER=$history[$_history_substring_search_matches[$_history_substring_search_match_index]]
|
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
|
||||||
|
|
||||||
|
elif [[ $_history_substring_search_match_index -eq $_history_substring_search_matches_count ]]; then
|
||||||
|
#
|
||||||
|
# We will move beyond the beginning of $_history_substring_search_matches:
|
||||||
|
#
|
||||||
|
# 1. Increase $_history_substring_search_match_index by 1.
|
||||||
|
#
|
||||||
|
# 2. Save the current buffer in $_history_substring_search_old_buffer, so
|
||||||
|
# that it can be retrieved by _history-substring-search-up-search()
|
||||||
|
# later.
|
||||||
|
#
|
||||||
|
# 3. Make $BUFFER equal to $_history_substring_search_query.
|
||||||
|
#
|
||||||
|
# 4. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
|
||||||
|
# to highlight the current buffer.
|
||||||
|
#
|
||||||
|
(( _history_substring_search_match_index++ ))
|
||||||
|
_history_substring_search_old_buffer=$BUFFER
|
||||||
|
BUFFER=$_history_substring_search_query
|
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
|
||||||
|
|
||||||
|
elif [[ $_history_substring_search_match_index -eq 0 ]]; then
|
||||||
|
#
|
||||||
|
# We were beyond the end of $_history_substring_search_matches but DOWN
|
||||||
|
# makes us move back to the $_history_substring_search_matches:
|
||||||
|
#
|
||||||
|
# 1. Increase $_history_substring_search_match_index by 1.
|
||||||
|
#
|
||||||
|
# 2. Restore $BUFFER from $_history_substring_search_old_buffer.
|
||||||
|
#
|
||||||
|
# 3. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
|
||||||
|
# to highlight the current buffer.
|
||||||
|
#
|
||||||
|
(( _history_substring_search_match_index++ ))
|
||||||
|
BUFFER=$_history_substring_search_old_buffer
|
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
|
||||||
|
# vim: ft=zsh sw=2 ts=2 et
|
||||||
9
plugins/kate/kate.plugin.zsh
Normal file
9
plugins/kate/kate.plugin.zsh
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
# Kate
|
||||||
|
# Start kate always silent
|
||||||
|
alias kate='kate >/dev/null 2>&1'
|
||||||
|
|
||||||
|
function kt () {
|
||||||
|
cd $1
|
||||||
|
kate $1
|
||||||
|
}
|
||||||
174
plugins/knife/_knife
Normal file
174
plugins/knife/_knife
Normal file
|
|
@ -0,0 +1,174 @@
|
||||||
|
#compdef knife
|
||||||
|
|
||||||
|
# These flags should be available everywhere according to man knife
|
||||||
|
knife_general_flags=( --help --server-url --key --config --editor --format --log_level --logfile --no-editor --user --print-after --version --yes )
|
||||||
|
|
||||||
|
# knife has a very special syntax, some example calls are:
|
||||||
|
# knife status
|
||||||
|
# knife cookbook list
|
||||||
|
# knife role show ROLENAME
|
||||||
|
# knife data bag show DATABAGNAME
|
||||||
|
# knife role show ROLENAME --attribute ATTRIBUTENAME
|
||||||
|
# knife cookbook show COOKBOOKNAME COOKBOOKVERSION recipes
|
||||||
|
|
||||||
|
# The -Q switch in compadd allow for completions of things like "data bag" without having to go through two rounds of completion and avoids zsh inserting a \ for escaping spaces
|
||||||
|
_knife() {
|
||||||
|
local curcontext="$curcontext" state line
|
||||||
|
typeset -A opt_args
|
||||||
|
cloudproviders=(bluebox ec2 rackspace slicehost terremark)
|
||||||
|
_arguments \
|
||||||
|
'1: :->knifecmd'\
|
||||||
|
'2: :->knifesubcmd'\
|
||||||
|
'3: :->knifesubcmd2' \
|
||||||
|
'4: :->knifesubcmd3' \
|
||||||
|
'5: :->knifesubcmd4' \
|
||||||
|
'6: :->knifesubcmd5'
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
knifecmd)
|
||||||
|
compadd -Q "$@" bootstrap client configure cookbook "cookbook site" "data bag" exec index node recipe role search ssh status windows $cloudproviders
|
||||||
|
;;
|
||||||
|
knifesubcmd)
|
||||||
|
case $words[2] in
|
||||||
|
(bluebox|ec2|rackspace|slicehost|terremark)
|
||||||
|
compadd "$@" server images
|
||||||
|
;;
|
||||||
|
client)
|
||||||
|
compadd -Q "$@" "bulk delete" list create show delete edit reregister
|
||||||
|
;;
|
||||||
|
configure)
|
||||||
|
compadd "$@" client
|
||||||
|
;;
|
||||||
|
cookbook)
|
||||||
|
compadd -Q "$@" test list create download delete "metadata from" show "bulk delete" metadata upload
|
||||||
|
;;
|
||||||
|
node)
|
||||||
|
compadd -Q "$@" "from file" create show edit delete list run_list "bulk delete"
|
||||||
|
;;
|
||||||
|
recipe)
|
||||||
|
compadd "$@" list
|
||||||
|
;;
|
||||||
|
role)
|
||||||
|
compadd -Q "$@" "bulk delete" create delete edit "from file" list show
|
||||||
|
;;
|
||||||
|
windows)
|
||||||
|
compadd "$@" bootstrap
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
_arguments '2:Subsubcommands:($(_knife_options1))'
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
knifesubcmd2)
|
||||||
|
case $words[3] in
|
||||||
|
server)
|
||||||
|
compadd "$@" list create delete
|
||||||
|
;;
|
||||||
|
images)
|
||||||
|
compadd "$@" list
|
||||||
|
;;
|
||||||
|
site)
|
||||||
|
compadd "$@" vendor show share search download list unshare
|
||||||
|
;;
|
||||||
|
(show|delete|edit)
|
||||||
|
_arguments '3:Subsubcommands:($(_chef_$words[2]s_remote))'
|
||||||
|
;;
|
||||||
|
(upload|test)
|
||||||
|
_arguments '3:Subsubcommands:($(_chef_$words[2]s_local) --all)'
|
||||||
|
;;
|
||||||
|
list)
|
||||||
|
compadd -a "$@" knife_general_flags
|
||||||
|
;;
|
||||||
|
bag)
|
||||||
|
compadd -Q "$@" show edit list "from file" create delete
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
_arguments '3:Subsubcommands:($(_knife_options2))'
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
knifesubcmd3)
|
||||||
|
case $words[3] in
|
||||||
|
show)
|
||||||
|
case $words[2] in
|
||||||
|
cookbook)
|
||||||
|
versioncomp=1
|
||||||
|
_arguments '4:Cookbookversions:($(_cookbook_versions) latest)'
|
||||||
|
;;
|
||||||
|
(node|client|role)
|
||||||
|
compadd "$@" --attribute
|
||||||
|
esac
|
||||||
|
esac
|
||||||
|
case $words[4] in
|
||||||
|
(show|edit)
|
||||||
|
_arguments '4:Subsubsubcommands:($(_chef_$words[2]_$words[3]s_remote))'
|
||||||
|
;;
|
||||||
|
file)
|
||||||
|
_arguments '*:file or directory:_files -g "*.(rb|json)"'
|
||||||
|
;;
|
||||||
|
list)
|
||||||
|
compadd -a "$@" knife_general_flags
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
_arguments '*:Subsubcommands:($(_knife_options3))'
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
knifesubcmd4)
|
||||||
|
if (( versioncomp > 0 )); then
|
||||||
|
compadd "$@" attributes definitions files libraries providers recipes resources templates
|
||||||
|
else
|
||||||
|
_arguments '*:Subsubcommands:($(_knife_options2))'
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
knifesubcmd5)
|
||||||
|
_arguments '*:Subsubcommands:($(_knife_options3))'
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Helper functions to provide the argument completion for several depths of commands
|
||||||
|
_knife_options1() {
|
||||||
|
( for line in $( knife $words[2] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done )
|
||||||
|
}
|
||||||
|
|
||||||
|
_knife_options2() {
|
||||||
|
( for line in $( knife $words[2] $words[3] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done )
|
||||||
|
}
|
||||||
|
|
||||||
|
_knife_options3() {
|
||||||
|
( for line in $( knife $words[2] $words[3] $words[4] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done )
|
||||||
|
}
|
||||||
|
|
||||||
|
# The chef_x_remote functions use knife to get a list of objects of type x on the server
|
||||||
|
_chef_roles_remote() {
|
||||||
|
(knife role list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
|
||||||
|
}
|
||||||
|
|
||||||
|
_chef_clients_remote() {
|
||||||
|
(knife client list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
|
||||||
|
}
|
||||||
|
|
||||||
|
_chef_nodes_remote() {
|
||||||
|
(knife node list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
|
||||||
|
}
|
||||||
|
|
||||||
|
_chef_cookbooks_remote() {
|
||||||
|
(knife cookbook list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
|
||||||
|
}
|
||||||
|
|
||||||
|
_chef_sitecookbooks_remote() {
|
||||||
|
(knife cookbook site list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
|
||||||
|
}
|
||||||
|
|
||||||
|
_chef_data_bags_remote() {
|
||||||
|
(knife data bag list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
|
||||||
|
}
|
||||||
|
|
||||||
|
# The chef_x_local functions use the knife config to find the paths of relevant objects x to be uploaded to the server
|
||||||
|
_chef_cookbooks_local() {
|
||||||
|
(for i in $( grep cookbook_path $HOME/.chef/knife.rb | awk 'BEGIN {FS = "[" }; {print $2}' | sed 's/\,//g' | sed "s/'//g" | sed 's/\(.*\)]/\1/' ); do ls $i; done)
|
||||||
|
}
|
||||||
|
|
||||||
|
# This function extracts the available cookbook versions on the chef server
|
||||||
|
_cookbook_versions() {
|
||||||
|
(knife cookbook show $words[4] | grep -v $words[4] | grep -v -E '\]|\[|\{|\}' | sed 's/ //g' | sed 's/"//g')
|
||||||
|
}
|
||||||
|
|
||||||
|
_knife "$@"
|
||||||
|
|
@ -8,19 +8,30 @@ alias rtfm='man'
|
||||||
alias visible='echo'
|
alias visible='echo'
|
||||||
alias invisible='cat'
|
alias invisible='cat'
|
||||||
alias moar='more'
|
alias moar='more'
|
||||||
|
alias tldr='less'
|
||||||
|
alias alwayz='tail -f'
|
||||||
|
|
||||||
alias icanhas='mkdir'
|
alias icanhas='mkdir'
|
||||||
|
alias gimmeh='touch'
|
||||||
alias donotwant='rm'
|
alias donotwant='rm'
|
||||||
alias dowant='cp'
|
alias dowant='cp'
|
||||||
alias gtfo='mv'
|
alias gtfo='mv'
|
||||||
|
alias nowai='chmod'
|
||||||
|
|
||||||
alias hai='cd'
|
alias hai='cd'
|
||||||
|
alias iz='ls'
|
||||||
alias plz='pwd'
|
alias plz='pwd'
|
||||||
|
alias ihasbucket='df -h'
|
||||||
|
|
||||||
alias inur='locate'
|
alias inur='locate'
|
||||||
|
alias iminurbase='finger'
|
||||||
|
|
||||||
|
alias btw='nice'
|
||||||
|
alias obtw='nohup'
|
||||||
|
|
||||||
alias nomz='ps -aux'
|
alias nomz='ps -aux'
|
||||||
alias nomnom='killall'
|
alias nomnom='killall'
|
||||||
|
|
||||||
|
alias byes='exit'
|
||||||
alias cya='reboot'
|
alias cya='reboot'
|
||||||
alias kthxbai='halt'
|
alias kthxbai='halt'
|
||||||
|
|
|
||||||
14
plugins/mercurial/mercurial.plugin.zsh
Normal file
14
plugins/mercurial/mercurial.plugin.zsh
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
|
||||||
|
# Mercurial
|
||||||
|
alias hgc='hg commit -v'
|
||||||
|
alias hgb='hg branch -v'
|
||||||
|
alias hgba='hg branches'
|
||||||
|
alias hgco='hg checkout'
|
||||||
|
alias hgd='hg diff'
|
||||||
|
alias hged='hg diffmerge'
|
||||||
|
# pull and update
|
||||||
|
alias hgl='hg pull -u -v'
|
||||||
|
alias hgp='hg push -v'
|
||||||
|
alias hgs='hg status -v'
|
||||||
|
# this is the 'git commit --amend' equivalent
|
||||||
|
alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
#compdef npm
|
|
||||||
|
|
||||||
# Node Package Manager 0.3.15 completion, letting npm do all the completion work
|
|
||||||
|
|
||||||
_npm() {
|
|
||||||
compadd -- $(_npm_complete $words)
|
|
||||||
}
|
|
||||||
|
|
||||||
# We want to show all errors of any substance, but never the "npm (not )ok" one.
|
|
||||||
# (Also doesn't consider "ERR! no match found" worth breaking the terminal for.)
|
|
||||||
_npm_complete() {
|
|
||||||
local ask_npm
|
|
||||||
ask_npm=(npm completion --color false --loglevel error -- $@)
|
|
||||||
{ _call_program npm $ask_npm 2>&1 >&3 \
|
|
||||||
| egrep -v '^(npm (not |)ok|ERR! no match found)$' >&2; \
|
|
||||||
} 3>&1
|
|
||||||
}
|
|
||||||
|
|
||||||
_npm "$@"
|
|
||||||
1
plugins/npm/npm.plugin.zsh
Normal file
1
plugins/npm/npm.plugin.zsh
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
eval "$(npm completion 2>/dev/null)"
|
||||||
5
plugins/osx/_man-preview
Normal file
5
plugins/osx/_man-preview
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
#compdef man-preview
|
||||||
|
#autoload
|
||||||
|
|
||||||
|
_man
|
||||||
|
|
||||||
|
|
@ -1,63 +1,99 @@
|
||||||
alias showfiles='defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder'
|
# ------------------------------------------------------------------------------
|
||||||
alias hidefiles='defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder'
|
# FILE: osx.plugin.zsh
|
||||||
|
# DESCRIPTION: oh-my-zsh plugin file.
|
||||||
|
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com)
|
||||||
|
# VERSION: 1.0.1
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
# Recursively delete .DS_Store files
|
|
||||||
alias rm-dsstore="find . -name '*.DS_Store' -type f -delete"
|
|
||||||
|
|
||||||
function savepath() {
|
|
||||||
pwd > ~/.current_path~
|
|
||||||
}
|
|
||||||
|
|
||||||
function tab() {
|
function tab() {
|
||||||
savepath
|
local command="cd \\\"$PWD\\\""
|
||||||
osascript >/dev/null <<EOF
|
(( $# > 0 )) && command="${command}; $*"
|
||||||
on do_submenu(app_name, menu_name, menu_item, submenu_item)
|
|
||||||
-- bring the target application to the front
|
the_app=$(
|
||||||
tell application app_name
|
osascript 2>/dev/null <<EOF
|
||||||
activate
|
tell application "System Events"
|
||||||
end tell
|
name of first item of (every process whose frontmost is true)
|
||||||
tell application "System Events"
|
end tell
|
||||||
tell process app_name
|
EOF
|
||||||
tell menu bar 1
|
)
|
||||||
tell menu bar item menu_name
|
|
||||||
tell menu menu_name
|
[[ "$the_app" == 'Terminal' ]] && {
|
||||||
tell menu item menu_item
|
osascript 2>/dev/null <<EOF
|
||||||
tell menu menu_item
|
tell application "System Events"
|
||||||
click menu item submenu_item
|
tell process "Terminal" to keystroke "t" using command down
|
||||||
end tell
|
tell application "Terminal" to do script "${command}" in front window
|
||||||
end tell
|
end tell
|
||||||
end tell
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
[[ "$the_app" == 'iTerm' ]] && {
|
||||||
|
osascript 2>/dev/null <<EOF
|
||||||
|
tell application "iTerm"
|
||||||
|
set current_terminal to current terminal
|
||||||
|
tell current_terminal
|
||||||
|
launch session "Default Session"
|
||||||
|
set current_session to current session
|
||||||
|
tell current_session
|
||||||
|
write text "${command}"
|
||||||
end tell
|
end tell
|
||||||
end tell
|
end tell
|
||||||
end tell
|
end tell
|
||||||
end tell
|
EOF
|
||||||
end do_submenu
|
}
|
||||||
|
}
|
||||||
|
|
||||||
do_submenu("Terminal", "Shell", "New Tab", 1)
|
function pfd() {
|
||||||
|
osascript 2>/dev/null <<EOF
|
||||||
|
tell application "Finder"
|
||||||
|
return POSIX path of (target of window 1 as alias)
|
||||||
|
end tell
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
function itab() {
|
function pfs() {
|
||||||
savepath
|
osascript 2>/dev/null <<EOF
|
||||||
osascript >/dev/null <<EOF
|
set output to ""
|
||||||
on do_submenu(app_name, menu_name, menu_item)
|
tell application "Finder" to set the_selection to selection
|
||||||
-- bring the target application to the front
|
set item_count to count the_selection
|
||||||
tell application app_name
|
repeat with item_index from 1 to count the_selection
|
||||||
activate
|
if item_index is less than item_count then set the_delimiter to "\n"
|
||||||
end tell
|
if item_index is item_count then set the_delimiter to ""
|
||||||
tell application "System Events"
|
set output to output & ((item item_index of the_selection as alias)'s POSIX path) & the_delimiter
|
||||||
tell process app_name
|
end repeat
|
||||||
tell menu bar 1
|
|
||||||
tell menu bar item menu_name
|
|
||||||
tell menu menu_name
|
|
||||||
click menu item menu_item
|
|
||||||
end tell
|
|
||||||
end tell
|
|
||||||
end tell
|
|
||||||
end tell
|
|
||||||
end tell
|
|
||||||
end do_submenu
|
|
||||||
|
|
||||||
do_submenu("iTerm", "Shell", "New Tab")
|
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function cdf() {
|
||||||
|
cd "$(pfd)"
|
||||||
|
}
|
||||||
|
|
||||||
|
function pushdf() {
|
||||||
|
pushd "$(pfd)"
|
||||||
|
}
|
||||||
|
|
||||||
|
function quick-look() {
|
||||||
|
(( $# > 0 )) && qlmanage -p $* &>/dev/null &
|
||||||
|
}
|
||||||
|
|
||||||
|
function man-preview() {
|
||||||
|
man -t "$@" | open -f -a Preview
|
||||||
|
}
|
||||||
|
|
||||||
|
function trash() {
|
||||||
|
local trash_dir="${HOME}/.Trash"
|
||||||
|
local temp_ifs=$IFS
|
||||||
|
IFS=$'\n'
|
||||||
|
for item in "$@"; do
|
||||||
|
if [[ -e "$item" ]]; then
|
||||||
|
item_name="$(basename $item)"
|
||||||
|
if [[ -e "${trash_dir}/${item_name}" ]]; then
|
||||||
|
mv -f "$item" "${trash_dir}/${item_name} $(date "+%H-%M-%S")"
|
||||||
|
else
|
||||||
|
mv -f "$item" "${trash_dir}/"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
IFS=$temp_ifs
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
||||||
4
plugins/powder/_powder
Normal file
4
plugins/powder/_powder
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
#compdef powder
|
||||||
|
#autoload
|
||||||
|
|
||||||
|
compadd `powder help | grep powder | cut -d " " -f 4`
|
||||||
5
plugins/python/python.plugin.zsh
Normal file
5
plugins/python/python.plugin.zsh
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Find python file
|
||||||
|
alias pyfind='find . -name "*.py"'
|
||||||
|
|
||||||
|
# Remove python compiled byte-code
|
||||||
|
alias pyclean='find . -type f -name "*.py[co]" -exec rm -f \{\} \;'
|
||||||
|
|
@ -51,7 +51,7 @@ _1st_arguments=(
|
||||||
'keys:find all keys matching the given pattern'
|
'keys:find all keys matching the given pattern'
|
||||||
'lastsave:get the UNIX timestamp of the last successful save to disk'
|
'lastsave:get the UNIX timestamp of the last successful save to disk'
|
||||||
'lindex:get an element from a list by its index'
|
'lindex:get an element from a list by its index'
|
||||||
'linset:insert an element before or after another element in a list'
|
'linsert:insert an element before or after another element in a list'
|
||||||
'llen:get the length of a list'
|
'llen:get the length of a list'
|
||||||
'lpop:remove and get the first element in a list'
|
'lpop:remove and get the first element in a list'
|
||||||
'lpush:prepend a value to a list'
|
'lpush:prepend a value to a list'
|
||||||
|
|
|
||||||
|
|
@ -1,23 +1,62 @@
|
||||||
# Based on code from Joseph M. Reagle
|
#
|
||||||
# http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html
|
# INSTRUCTIONS
|
||||||
|
#
|
||||||
|
# To enabled agent forwarding support add the following to
|
||||||
|
# your .zshrc file:
|
||||||
|
#
|
||||||
|
# zstyle :omz:plugins:ssh-agent agent-forwarding on
|
||||||
|
#
|
||||||
|
# To load multiple identies use the identities style, For
|
||||||
|
# example:
|
||||||
|
#
|
||||||
|
# zstyle :omz:plugins:ssh-agent id_rsa id_rsa2 id_github
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# CREDITS
|
||||||
|
#
|
||||||
|
# Based on code from Joseph M. Reagle
|
||||||
|
# http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html
|
||||||
|
#
|
||||||
|
# Agent forwarding support based on ideas from
|
||||||
|
# Florent Thoumie and Jonas Pfenniger
|
||||||
|
#
|
||||||
|
|
||||||
local SSH_ENV=$HOME/.ssh/environment-$HOST
|
local _plugin__ssh_env=$HOME/.ssh/environment-$HOST
|
||||||
|
local _plugin__forwarding
|
||||||
|
|
||||||
function start_agent {
|
function _plugin__start_agent()
|
||||||
/usr/bin/env ssh-agent | sed 's/^echo/#echo/' > ${SSH_ENV}
|
{
|
||||||
chmod 600 ${SSH_ENV}
|
local -a identities
|
||||||
. ${SSH_ENV} > /dev/null
|
|
||||||
/usr/bin/ssh-add;
|
# start ssh-agent and setup environment
|
||||||
|
/usr/bin/env ssh-agent | sed 's/^echo/#echo/' > ${_plugin__ssh_env}
|
||||||
|
chmod 600 ${_plugin__ssh_env}
|
||||||
|
. ${_plugin__ssh_env} > /dev/null
|
||||||
|
|
||||||
|
# load identies
|
||||||
|
zstyle -a :omz:plugins:ssh-agent identities identities
|
||||||
|
echo starting...
|
||||||
|
/usr/bin/ssh-add $HOME/.ssh/${^identities}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Source SSH settings, if applicable
|
# test if agent-forwarding is enabled
|
||||||
|
zstyle -b :omz:plugins:ssh-agent agent-forwarding _plugin__forwarding
|
||||||
|
if [[ ${_plugin__forwarding} == "yes" && -n "$SSH_AUTH_SOCK" ]]; then
|
||||||
|
# Add a nifty symlink for screen/tmux if agent forwarding
|
||||||
|
[[ -L $SSH_AUTH_SOCK ]] || ln -sf "$SSH_AUTH_SOCK" /tmp/ssh-agent-$USER-screen
|
||||||
|
|
||||||
if [ -f "${SSH_ENV}" ]; then
|
elif [ -f "${_plugin__ssh_env}" ]; then
|
||||||
. ${SSH_ENV} > /dev/null
|
# Source SSH settings, if applicable
|
||||||
|
. ${_plugin__ssh_env} > /dev/null
|
||||||
ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
|
ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
|
||||||
start_agent;
|
_plugin__start_agent;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
start_agent;
|
_plugin__start_agent;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# tidy up after ourselves
|
||||||
|
unfunction _plugin__start_agent
|
||||||
|
unset _plugin__forwarding
|
||||||
|
unset _plugin__ssh_env
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
function svn_prompt_info {
|
function svn_prompt_info {
|
||||||
if [[ -d .svn ]]; then
|
if [ $(in_svn) ]; then
|
||||||
echo "$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_SVN_PROMPT_PREFIX\
|
echo "$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_SVN_PROMPT_PREFIX\
|
||||||
$ZSH_THEME_REPO_NAME_COLOR$(svn_get_repo_name)$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_SVN_PROMPT_SUFFIX$ZSH_PROMPT_BASE_COLOR$(svn_dirty)$ZSH_PROMPT_BASE_COLOR"
|
$ZSH_THEME_REPO_NAME_COLOR$(svn_get_repo_name)$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_SVN_PROMPT_SUFFIX$ZSH_PROMPT_BASE_COLOR$(svn_dirty)$ZSH_PROMPT_BASE_COLOR"
|
||||||
fi
|
fi
|
||||||
|
|
@ -13,7 +13,7 @@ function in_svn() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function svn_get_repo_name {
|
function svn_get_repo_name {
|
||||||
if [ in_svn ]; then
|
if [ $(in_svn) ]; then
|
||||||
svn info | sed -n 's/Repository\ Root:\ .*\///p' | read SVN_ROOT
|
svn info | sed -n 's/Repository\ Root:\ .*\///p' | read SVN_ROOT
|
||||||
|
|
||||||
svn info | sed -n "s/URL:\ .*$SVN_ROOT\///p" | sed "s/\/.*$//"
|
svn info | sed -n "s/URL:\ .*$SVN_ROOT\///p" | sed "s/\/.*$//"
|
||||||
|
|
@ -21,14 +21,14 @@ function svn_get_repo_name {
|
||||||
}
|
}
|
||||||
|
|
||||||
function svn_get_rev_nr {
|
function svn_get_rev_nr {
|
||||||
if [ in_svn ]; then
|
if [ $(in_svn) ]; then
|
||||||
svn info 2> /dev/null | sed -n s/Revision:\ //p
|
svn info 2> /dev/null | sed -n s/Revision:\ //p
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function svn_dirty_choose {
|
function svn_dirty_choose {
|
||||||
if [ in_svn ]; then
|
if [ $(in_svn) ]; then
|
||||||
s=$(svn status 2>/dev/null)
|
s=$(svn status|grep -E '^\s*[ACDIM!?L]' 2>/dev/null)
|
||||||
if [ $s ]; then
|
if [ $s ]; then
|
||||||
echo $1
|
echo $1
|
||||||
else
|
else
|
||||||
|
|
|
||||||
280
plugins/taskwarrior/_task
Normal file
280
plugins/taskwarrior/_task
Normal file
|
|
@ -0,0 +1,280 @@
|
||||||
|
#compdef task
|
||||||
|
#
|
||||||
|
# zsh completion for taskwarrior
|
||||||
|
#
|
||||||
|
# Copyright 2010 - 2011 Johannes Schlatow
|
||||||
|
# Copyright 2009 P.C. Shyamshankar
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# This script is part of the taskwarrior project.
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify it under
|
||||||
|
# the terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation; either version 2 of the License, or (at your option) any later
|
||||||
|
# version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
|
# details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# this program; if not, write to the
|
||||||
|
#
|
||||||
|
# Free Software Foundation, Inc.,
|
||||||
|
# 51 Franklin Street, Fifth Floor,
|
||||||
|
# Boston, MA
|
||||||
|
# 02110-1301
|
||||||
|
# USA
|
||||||
|
#
|
||||||
|
typeset -g _task_cmds _task_projects _task_tags _task_config _task_modifiers
|
||||||
|
_task_projects=($(task _projects))
|
||||||
|
_task_tags=($(task _tags))
|
||||||
|
_task_ids=($(task _ids))
|
||||||
|
_task_config=($(task _config))
|
||||||
|
_task_modifiers=(
|
||||||
|
'before' \
|
||||||
|
'after' \
|
||||||
|
'none' \
|
||||||
|
'any' \
|
||||||
|
'is' \
|
||||||
|
'isnt' \
|
||||||
|
'has' \
|
||||||
|
'hasnt' \
|
||||||
|
'startswith' \
|
||||||
|
'endswith' \
|
||||||
|
'word' \
|
||||||
|
'noword'
|
||||||
|
)
|
||||||
|
_task_cmds=($(task _commands))
|
||||||
|
_task_zshcmds=( ${(f)"$(task _zshcommands)"} )
|
||||||
|
|
||||||
|
|
||||||
|
_task_idCmds=(
|
||||||
|
'append' \
|
||||||
|
'prepend' \
|
||||||
|
'annotate' \
|
||||||
|
'denotate' \
|
||||||
|
'edit' \
|
||||||
|
'duplicate' \
|
||||||
|
'info' \
|
||||||
|
'start' \
|
||||||
|
'stop' \
|
||||||
|
'done'
|
||||||
|
)
|
||||||
|
|
||||||
|
_task_idCmdsDesc=(
|
||||||
|
'append:Appends more description to an existing task.' \
|
||||||
|
'prepend:Prepends more description to an existing task.' \
|
||||||
|
'annotate:Adds an annotation to an existing task.' \
|
||||||
|
'denotate:Deletes an annotation of an existing task.' \
|
||||||
|
'edit:Launches an editor to let you modify a task directly.' \
|
||||||
|
'duplicate:Duplicates the specified task, and allows modifications.' \
|
||||||
|
'info:Shows all data, metadata for specified task.' \
|
||||||
|
'start:Marks specified task as started.' \
|
||||||
|
'stop:Removes the start time from a task.' \
|
||||||
|
'done:Marks the specified task as completed.'
|
||||||
|
)
|
||||||
|
|
||||||
|
_task() {
|
||||||
|
_arguments -s -S \
|
||||||
|
"*::task command:_task_commands"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
local -a reply args word
|
||||||
|
word=$'[^\0]#\0'
|
||||||
|
|
||||||
|
# priorities
|
||||||
|
local -a task_priorities
|
||||||
|
_regex_words values 'task priorities' \
|
||||||
|
'H:High' \
|
||||||
|
'M:Middle' \
|
||||||
|
'L:Low'
|
||||||
|
task_priorities=("$reply[@]")
|
||||||
|
|
||||||
|
# projects
|
||||||
|
local -a task_projects
|
||||||
|
task_projects=(
|
||||||
|
/"$word"/
|
||||||
|
":values:task projects:compadd -a _task_projects"
|
||||||
|
)
|
||||||
|
|
||||||
|
local -a _task_dates
|
||||||
|
_regex_words values 'task dates' \
|
||||||
|
'tod*ay:Today' \
|
||||||
|
'yes*terday:Yesterday' \
|
||||||
|
'tom*orrow:Tomorrow' \
|
||||||
|
'sow:Start of week' \
|
||||||
|
'soww:Start of work week' \
|
||||||
|
'socw:Start of calendar week' \
|
||||||
|
'som:Start of month' \
|
||||||
|
'soy:Start of year' \
|
||||||
|
'eow:End of week' \
|
||||||
|
'eoww:End of work week' \
|
||||||
|
'eocw:End of calendar week' \
|
||||||
|
'eom:End of month' \
|
||||||
|
'eoy:End of year' \
|
||||||
|
'mon:Monday' \
|
||||||
|
'tue:Tuesday'\
|
||||||
|
'wed:Wednesday' \
|
||||||
|
'thu:Thursday' \
|
||||||
|
'fri:Friday' \
|
||||||
|
'sat:Saturday' \
|
||||||
|
'sun:Sunday'
|
||||||
|
_task_dates=("$reply[@]")
|
||||||
|
|
||||||
|
local -a _task_reldates
|
||||||
|
_regex_words values 'task reldates' \
|
||||||
|
'hrs:n hours' \
|
||||||
|
'day:n days' \
|
||||||
|
'1st:first' \
|
||||||
|
'2nd:second' \
|
||||||
|
'3rd:third' \
|
||||||
|
'th:4th, 5th, etc.' \
|
||||||
|
'wks:weeks'
|
||||||
|
_task_reldates=("$reply[@]")
|
||||||
|
|
||||||
|
task_dates=(
|
||||||
|
\( "$_task_dates[@]" \|
|
||||||
|
\( /$'[0-9][0-9]#'/- \( "$_task_reldates[@]" \) \)
|
||||||
|
\)
|
||||||
|
)
|
||||||
|
|
||||||
|
_regex_words values 'task frequencies' \
|
||||||
|
'daily:Every day' \
|
||||||
|
'day:Every day' \
|
||||||
|
'weekdays:Every day skipping weekend days' \
|
||||||
|
'weekly:Every week' \
|
||||||
|
'biweekly:Every two weeks' \
|
||||||
|
'fortnight:Every two weeks' \
|
||||||
|
'quarterly:Every three months' \
|
||||||
|
'semiannual:Every six months' \
|
||||||
|
'annual:Every year' \
|
||||||
|
'yearly:Every year' \
|
||||||
|
'biannual:Every two years' \
|
||||||
|
'biyearly:Every two years'
|
||||||
|
_task_freqs=("$reply[@]")
|
||||||
|
|
||||||
|
local -a _task_frequencies
|
||||||
|
_regex_words values 'task frequencies' \
|
||||||
|
'd:days' \
|
||||||
|
'w:weeks' \
|
||||||
|
'q:quarters' \
|
||||||
|
'y:years'
|
||||||
|
_task_frequencies=("$reply[@]")
|
||||||
|
|
||||||
|
task_freqs=(
|
||||||
|
\( "$_task_freqs[@]" \|
|
||||||
|
\( /$'[0-9][0-9]#'/- \( "$_task_frequencies[@]" \) \)
|
||||||
|
\)
|
||||||
|
)
|
||||||
|
|
||||||
|
# attributes
|
||||||
|
local -a task_attributes
|
||||||
|
_regex_words -t ':' default 'task attributes' \
|
||||||
|
'pro*ject:Project name:$task_projects' \
|
||||||
|
'du*e:Due date:$task_dates' \
|
||||||
|
'wa*it:Date until task becomes pending:$task_dates' \
|
||||||
|
're*cur:Recurrence frequency:$task_freqs' \
|
||||||
|
'pri*ority:priority:$task_priorities' \
|
||||||
|
'un*til:Recurrence end date:$task_dates' \
|
||||||
|
'fg:Foreground color' \
|
||||||
|
'bg:Background color' \
|
||||||
|
'li*mit:Desired number of rows in report'
|
||||||
|
task_attributes=("$reply[@]")
|
||||||
|
|
||||||
|
args=(
|
||||||
|
\( "$task_attributes[@]" \|
|
||||||
|
\( /'(project|due|wait|recur|priority|until|fg|bg|limit).'/- \( /$'[^:]#:'/ ":default:modifiers:compadd -S ':' -a _task_modifiers" \) \) \|
|
||||||
|
\( /'(rc).'/- \( /$'[^:]#:'/ ":arguments:config:compadd -S ':' -a _task_config" \) \) \|
|
||||||
|
\( /'(+|-)'/- \( /"$word"/ ":values:remove tag:compadd -a _task_tags" \) \) \|
|
||||||
|
\( /"$word"/ \)
|
||||||
|
\) \#
|
||||||
|
)
|
||||||
|
_regex_arguments _task_attributes "${args[@]}"
|
||||||
|
|
||||||
|
## task commands
|
||||||
|
|
||||||
|
# default completion
|
||||||
|
(( $+functions[_task_default] )) ||
|
||||||
|
_task_default() {
|
||||||
|
_task_attributes "$@"
|
||||||
|
}
|
||||||
|
|
||||||
|
# commands expecting an ID
|
||||||
|
(( $+functions[_task_id] )) ||
|
||||||
|
_task_id() {
|
||||||
|
if (( CURRENT < 3 )); then
|
||||||
|
# update IDs
|
||||||
|
_task_zshids=( ${(f)"$(task _zshids)"} )
|
||||||
|
_describe -t values 'task IDs' _task_zshids
|
||||||
|
else
|
||||||
|
_task_attributes "$@"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# merge completion
|
||||||
|
(( $+functions[_task_merge] )) ||
|
||||||
|
_task_merge() {
|
||||||
|
# TODO match URIs in .taskrc
|
||||||
|
_files
|
||||||
|
}
|
||||||
|
|
||||||
|
# push completion
|
||||||
|
(( $+functions[_task_push] )) ||
|
||||||
|
_task_push() {
|
||||||
|
# TODO match URIs in .taskrc
|
||||||
|
_files
|
||||||
|
}
|
||||||
|
|
||||||
|
# pull completion
|
||||||
|
(( $+functions[_task_pull] )) ||
|
||||||
|
_task_pull() {
|
||||||
|
# TODO match URIs in .taskrc
|
||||||
|
_files
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# modify (task [0-9]* ...) completion
|
||||||
|
(( $+functions[_task_modify] )) ||
|
||||||
|
_task_modify() {
|
||||||
|
_describe -t commands 'task command' _task_idCmdsDesc
|
||||||
|
_task_attributes "$@"
|
||||||
|
}
|
||||||
|
|
||||||
|
## first level completion => task sub-command completion
|
||||||
|
(( $+functions[_task_commands] )) ||
|
||||||
|
_task_commands() {
|
||||||
|
local cmd ret=1
|
||||||
|
if (( CURRENT == 1 )); then
|
||||||
|
# update IDs
|
||||||
|
_task_zshids=( ${(f)"$(task _zshids)"} )
|
||||||
|
|
||||||
|
_describe -t commands 'task command' _task_zshcmds
|
||||||
|
_describe -t values 'task IDs' _task_zshids
|
||||||
|
# TODO match more than one ID
|
||||||
|
elif [[ $words[1] =~ ^[0-9]*$ ]] then
|
||||||
|
_call_function ret _task_modify
|
||||||
|
return ret
|
||||||
|
else
|
||||||
|
# local curcontext="${curcontext}"
|
||||||
|
# cmd="${_task_cmds[(r)$words[1]:*]%%:*}"
|
||||||
|
cmd="${_task_cmds[(r)$words[1]]}"
|
||||||
|
idCmd="${(M)_task_idCmds[@]:#$words[1]}"
|
||||||
|
if (( $#cmd )); then
|
||||||
|
# curcontext="${curcontext%:*:*}:task-${cmd}"
|
||||||
|
|
||||||
|
if (( $#idCmd )); then
|
||||||
|
_call_function ret _task_id
|
||||||
|
else
|
||||||
|
_call_function ret _task_${cmd} ||
|
||||||
|
_call_function ret _task_default ||
|
||||||
|
_message "No command remaining."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
_message "Unknown subcommand ${cmd}"
|
||||||
|
fi
|
||||||
|
return ret
|
||||||
|
fi
|
||||||
|
}
|
||||||
21
plugins/taskwarrior/taskwarrior.plugin.zsh
Normal file
21
plugins/taskwarrior/taskwarrior.plugin.zsh
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
################################################################################
|
||||||
|
# Author: Pete Clark
|
||||||
|
# Email: pete[dot]clark[at]gmail[dot]com
|
||||||
|
# Version: 0.1 (05/24/2011)
|
||||||
|
# License: WTFPL<http://sam.zoy.org/wtfpl/>
|
||||||
|
#
|
||||||
|
# This oh-my-zsh plugin adds smart tab completion for
|
||||||
|
# TaskWarrior<http://taskwarrior.org/>. It uses the zsh tab completion
|
||||||
|
# script (_task) distributed with TaskWarrior for the completion definitions.
|
||||||
|
#
|
||||||
|
# Typing task[tabtab] will give you a list of current tasks, task 66[tabtab]
|
||||||
|
# gives a list of available modifications for that task, etc.
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
zstyle ':completion:*:*:task:*' verbose yes
|
||||||
|
zstyle ':completion:*:*:task:*:descriptions' format '%U%B%d%b%u'
|
||||||
|
|
||||||
|
zstyle ':completion:*:*:task:*' group-name ''
|
||||||
|
|
||||||
|
alias t=task
|
||||||
|
compdef _task t=task
|
||||||
38
plugins/terminitor/_terminitor
Normal file
38
plugins/terminitor/_terminitor
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
#compdef terminitor
|
||||||
|
#autoload
|
||||||
|
|
||||||
|
# terminitor zsh completion
|
||||||
|
|
||||||
|
_terminitor_available_scripts() {
|
||||||
|
scripts=(`for SCRIPT in ~/.config/terminitor/*.term ; do basename $SCRIPT .term ; done`)
|
||||||
|
}
|
||||||
|
|
||||||
|
local -a _1st_arguments
|
||||||
|
_1st_arguments=(
|
||||||
|
'create:create a Termfile in directory'
|
||||||
|
'delete:delete terminitor script'
|
||||||
|
'edit:open termitor script'
|
||||||
|
'fetch:clone the designated repo and run setup'
|
||||||
|
'help:Describe available tasks or one specific task'
|
||||||
|
'init:create initial root terminitor folder'
|
||||||
|
'list:lists all terminitor scripts'
|
||||||
|
'setup:execute setup in the terminitor script'
|
||||||
|
'start:runs the terminitor script'
|
||||||
|
'update:update Terminitor to new global path(.config/.terminitor)'
|
||||||
|
)
|
||||||
|
|
||||||
|
local expl
|
||||||
|
|
||||||
|
_arguments \
|
||||||
|
'*:: :->subcmds' && return 0
|
||||||
|
|
||||||
|
if (( CURRENT == 1 )); then
|
||||||
|
_describe -t commands "terminitor task" _1st_arguments
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$words[1]" in
|
||||||
|
start|edit|delete|setup)
|
||||||
|
_terminitor_available_scripts
|
||||||
|
_wanted scripts expl 'installed scripts' compadd -a scripts ;;
|
||||||
|
esac
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
alias et='mate .'
|
alias et='mate .'
|
||||||
alias ett='mate app config lib db public spec test Rakefile Capfile Todo'
|
alias ett='mate Gemfile app config features lib db public spec test Rakefile Capfile Todo'
|
||||||
alias etp='mate app config lib db public spec test vendor/plugins vendor/gems Rakefile Capfile Todo'
|
alias etp='mate app config lib db public spec test vendor/plugins vendor/gems Rakefile Capfile Todo'
|
||||||
alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo'
|
alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo'
|
||||||
|
|
||||||
|
|
|
||||||
23
plugins/vundle/vundle.plugin.zsh
Normal file
23
plugins/vundle/vundle.plugin.zsh
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
function vundle-init () {
|
||||||
|
if [ ! -d ~/.vim/bundle/vundle/ ]
|
||||||
|
then
|
||||||
|
mkdir -p ~/.vim/bundle/vundle/
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d ~/.vim/bundle/vundle/.git/ ]
|
||||||
|
then
|
||||||
|
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
|
||||||
|
echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function vundle () {
|
||||||
|
vundle-init
|
||||||
|
vim -c "execute \"BundleInstall\" | q | q"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function vundle-update () {
|
||||||
|
vundle-init
|
||||||
|
vim -c "execute \"BundleInstall!\" | q | q"
|
||||||
|
}
|
||||||
|
|
@ -1,23 +1,26 @@
|
||||||
# Path to your oh-my-zsh configuration.
|
# Path to your oh-my-zsh configuration.
|
||||||
export ZSH=$HOME/.oh-my-zsh
|
ZSH=$HOME/.oh-my-zsh
|
||||||
|
|
||||||
# Set name of the theme to load.
|
# Set name of the theme to load.
|
||||||
# Look in ~/.oh-my-zsh/themes/
|
# Look in ~/.oh-my-zsh/themes/
|
||||||
# Optionally, if you set this to "random", it'll load a random theme each
|
# Optionally, if you set this to "random", it'll load a random theme each
|
||||||
# time that oh-my-zsh is loaded.
|
# time that oh-my-zsh is loaded.
|
||||||
export ZSH_THEME="robbyrussell"
|
ZSH_THEME="robbyrussell"
|
||||||
|
|
||||||
# Set to this to use case-sensitive completion
|
# Set to this to use case-sensitive completion
|
||||||
# export CASE_SENSITIVE="true"
|
# CASE_SENSITIVE="true"
|
||||||
|
|
||||||
# Comment this out to disable weekly auto-update checks
|
# Comment this out to disable weekly auto-update checks
|
||||||
# export DISABLE_AUTO_UPDATE="true"
|
# DISABLE_AUTO_UPDATE="true"
|
||||||
|
|
||||||
# Uncomment following line if you want to disable colors in ls
|
# Uncomment following line if you want to disable colors in ls
|
||||||
# export DISABLE_LS_COLORS="true"
|
# DISABLE_LS_COLORS="true"
|
||||||
|
|
||||||
# Uncomment following line if you want to disable autosetting terminal title.
|
# Uncomment following line if you want to disable autosetting terminal title.
|
||||||
# export DISABLE_AUTO_TITLE="true"
|
# DISABLE_AUTO_TITLE="true"
|
||||||
|
|
||||||
|
# Uncomment following line if you want red dots to be displayed while waiting for completion
|
||||||
|
# COMPLETION_WAITING_DOTS="true"
|
||||||
|
|
||||||
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
|
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
|
||||||
# Example format: plugins=(rails git textmate ruby lighthouse)
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||||
|
|
|
||||||
26
themes/apple.zsh-theme
Normal file
26
themes/apple.zsh-theme
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
function toon {
|
||||||
|
echo -n ""
|
||||||
|
}
|
||||||
|
|
||||||
|
get_git_dirty() {
|
||||||
|
git diff --quiet || echo '*'
|
||||||
|
}
|
||||||
|
|
||||||
|
autoload -Uz vcs_info
|
||||||
|
autoload -U colors && colors
|
||||||
|
zstyle ':vcs_info:*' check-for-changes true
|
||||||
|
zstyle ':vcs_info:*' unstagedstr '%F{red}*' # display this when there are unstaged changes
|
||||||
|
zstyle ':vcs_info:*' stagedstr '%F{yellow}+' # display this when there are staged changes
|
||||||
|
zstyle ':vcs_info:*' actionformats \
|
||||||
|
'%F{5}%F{5}[%F{2}%b%F{3}|%F{1}%a%c%u%F{5}]%f '
|
||||||
|
zstyle ':vcs_info:*' formats \
|
||||||
|
'%F{5}%F{5}[%F{2}%b%c%u%F{5}]%f '
|
||||||
|
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r'
|
||||||
|
zstyle ':vcs_info:*' enable git cvs svn
|
||||||
|
|
||||||
|
precmd () {
|
||||||
|
vcs_info
|
||||||
|
}
|
||||||
|
|
||||||
|
setopt prompt_subst
|
||||||
|
PROMPT='%{$fg[magenta]%}$(toon)%{$reset_color%} %~/ %{$reset_color%}${vcs_info_msg_0_}%{$reset_color%}'
|
||||||
20
themes/blinks.zsh-theme
Normal file
20
themes/blinks.zsh-theme
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
# https://github.com/blinks zsh theme
|
||||||
|
|
||||||
|
function _prompt_char() {
|
||||||
|
if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then
|
||||||
|
echo "%{%F{blue}%}±%{%f%k%b%}"
|
||||||
|
else
|
||||||
|
echo ' '
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" [%{%B%F{blue}%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{%f%k%b%K{black}%B%F{green}%}]"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{%F{red}%}*%{%f%k%b%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||||
|
|
||||||
|
PROMPT='%{%f%k%b%}
|
||||||
|
%{%K{black}%B%F{green}%}%n%{%B%F{blue}%}@%{%B%F{cyan}%}%m%{%B%F{green}%} %{%b%F{yellow}%K{black}%}%~%{%B%F{green}%}$(git_prompt_info)%E%{%f%k%b%}
|
||||||
|
%{%K{black}%}$(_prompt_char)%{%K{black}%} %#%{%f%k%b%} '
|
||||||
|
|
||||||
|
RPROMPT='!%{%B%F{cyan}%}%!%{%f%k%b%}'
|
||||||
37
themes/crunch.zsh-theme
Normal file
37
themes/crunch.zsh-theme
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
# CRUNCH - created from Steve Eley's cat waxing.
|
||||||
|
# Initially hacked from the Dallas theme. Thanks, Dallas Reedy.
|
||||||
|
#
|
||||||
|
# This theme assumes you do most of your oh-my-zsh'ed "colorful" work at a single machine,
|
||||||
|
# and eschews the standard space-consuming user and hostname info. Instead, only the
|
||||||
|
# things that vary in my own workflow are shown:
|
||||||
|
#
|
||||||
|
# * The time (not the date)
|
||||||
|
# * The RVM version and gemset (omitting the 'ruby' name if it's MRI)
|
||||||
|
# * The current directory
|
||||||
|
# * The Git branch and its 'dirty' state
|
||||||
|
#
|
||||||
|
# Colors are at the top so you can mess with those separately if you like.
|
||||||
|
# For the most part I stuck with Dallas's.
|
||||||
|
|
||||||
|
CRUNCH_BRACKET_COLOR="%{$fg[white]%}"
|
||||||
|
CRUNCH_TIME_COLOR="%{$fg[yellow]%}"
|
||||||
|
CRUNCH_RVM_COLOR="%{$fg[magenta]%}"
|
||||||
|
CRUNCH_DIR_COLOR="%{$fg[cyan]%}"
|
||||||
|
CRUNCH_GIT_BRANCH_COLOR="%{$fg[green]%}"
|
||||||
|
CRUNCH_GIT_CLEAN_COLOR="%{$fg[green]%}"
|
||||||
|
CRUNCH_GIT_DIRTY_COLOR="%{$fg[red]%}"
|
||||||
|
|
||||||
|
# These Git variables are used by the oh-my-zsh git_prompt_info helper:
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="$CRUNCH_BRACKET_COLOR:$CRUNCH_GIT_BRANCH_COLOR"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX=""
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=" $CRUNCH_GIT_CLEAN_COLOR✓"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=" $CRUNCH_GIT_DIRTY_COLOR✗"
|
||||||
|
|
||||||
|
# Our elements:
|
||||||
|
CRUNCH_TIME_="$CRUNCH_BRACKET_COLOR{$CRUNCH_TIME_COLOR%T$CRUNCH_BRACKET_COLOR}%{$reset_color%}"
|
||||||
|
CRUNCH_RVM_="$CRUNCH_BRACKET_COLOR"["$CRUNCH_RVM_COLOR\${\$(~/.rvm/bin/rvm-prompt i v g)#ruby-}$CRUNCH_BRACKET_COLOR"]"%{$reset_color%}"
|
||||||
|
CRUNCH_DIR_="$CRUNCH_DIR_COLOR%~\$(git_prompt_info) "
|
||||||
|
CRUNCH_PROMPT="$CRUNCH_BRACKET_COLOR➭ "
|
||||||
|
|
||||||
|
# Put it all together!
|
||||||
|
PROMPT="$CRUNCH_TIME_$CRUNCH_RVM_$CRUNCH_DIR_$CRUNCH_PROMPT%{$reset_color%}"
|
||||||
14
themes/dpoggi.zsh-theme
Normal file
14
themes/dpoggi.zsh-theme
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi
|
||||||
|
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
|
||||||
|
|
||||||
|
PROMPT='%{$fg[$NCOLOR]%}%n%{$reset_color%}@%{$fg[cyan]%}%m\
|
||||||
|
%{$reset_color%}:%{$fg[magenta]%}%~\
|
||||||
|
$(git_prompt_info) \
|
||||||
|
%{$fg[red]%}%(!.#.»)%{$reset_color%} '
|
||||||
|
PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
|
||||||
|
RPS1='${return_code}'
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}("
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}○%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}⚡%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg[yellow]%})%{$reset_color%}"
|
||||||
39
themes/fino.zsh-theme
Normal file
39
themes/fino.zsh-theme
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
# Fino theme by Max Masnick (http://max.masnick.me)
|
||||||
|
|
||||||
|
# Use with a dark background and 256-color terminal!
|
||||||
|
# Meant for people with RVM and git. Tested only on OS X 10.7.
|
||||||
|
|
||||||
|
# You can set your computer name in the ~/.box-name file if you want.
|
||||||
|
|
||||||
|
# Borrowing shamelessly from these oh-my-zsh themes:
|
||||||
|
# bira
|
||||||
|
# robbyrussell
|
||||||
|
#
|
||||||
|
# Also borrowing from http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/
|
||||||
|
|
||||||
|
function virtualenv_info {
|
||||||
|
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
|
||||||
|
}
|
||||||
|
|
||||||
|
function prompt_char {
|
||||||
|
git branch >/dev/null 2>/dev/null && echo '±' && return
|
||||||
|
echo '○'
|
||||||
|
}
|
||||||
|
|
||||||
|
function box_name {
|
||||||
|
[ -f ~/.box-name ] && cat ~/.box-name || hostname -s
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
local rvm_ruby='‹$(rvm-prompt i v g)›%{$reset_color%}'
|
||||||
|
local current_dir='${PWD/#$HOME/~}'
|
||||||
|
local git_info='$(git_prompt_info)'
|
||||||
|
|
||||||
|
|
||||||
|
PROMPT="╭─%{$FG[040]%}%n%{$reset_color%} %{$FG[239]%}at%{$reset_color%} %{$FG[033]%}$(box_name)%{$reset_color%} %{$FG[239]%}in%{$reset_color%} %{$terminfo[bold]$FG[226]%}${current_dir}%{$reset_color%}${git_info} %{$FG[239]%}using%{$FG[243]%} ${rvm_ruby}
|
||||||
|
╰─$(virtualenv_info)$(prompt_char) "
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$FG[239]%}on%{$reset_color%} %{$fg[255]%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$FG[202]%}✘✘✘"
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$FG[040]%}✔"
|
||||||
8
themes/fox.zsh-theme
Normal file
8
themes/fox.zsh-theme
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
#fox theme
|
||||||
|
PROMPT='%{$fg[cyan]%}┌[%{$fg_bold[white]%}%n%{$reset_color%}%{$fg[cyan]%}☮%{$fg_bold[white]%}%M%{$reset_color%}%{$fg[cyan]%}]%{$fg[white]%}-%{$fg[cyan]%}(%{$fg_bold[white]%}%~%{$reset_color%}%{$fg[cyan]%})$(git_prompt_info)
|
||||||
|
└> % %{$reset_color%}'
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="-[%{$reset_color%}%{$fg[white]%}git://%{$fg_bold[white]%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}%{$fg[cyan]%}]-"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}"
|
||||||
54
themes/gnzh.zsh-theme
Normal file
54
themes/gnzh.zsh-theme
Normal file
|
|
@ -0,0 +1,54 @@
|
||||||
|
# ZSH Theme - Preview: http://dl.dropbox.com/u/4109351/pics/gnzh-zsh-theme.png
|
||||||
|
# Based on bira theme
|
||||||
|
|
||||||
|
# load some modules
|
||||||
|
autoload -U colors zsh/terminfo # Used in the colour alias below
|
||||||
|
colors
|
||||||
|
setopt prompt_subst
|
||||||
|
|
||||||
|
# make some aliases for the colours: (coud use normal escap.seq's too)
|
||||||
|
for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
|
||||||
|
eval PR_$color='%{$fg[${(L)color}]%}'
|
||||||
|
done
|
||||||
|
eval PR_NO_COLOR="%{$terminfo[sgr0]%}"
|
||||||
|
eval PR_BOLD="%{$terminfo[bold]%}"
|
||||||
|
|
||||||
|
# Check the UID
|
||||||
|
if [[ $UID -ge 1000 ]]; then # normal user
|
||||||
|
eval PR_USER='${PR_GREEN}%n${PR_NO_COLOR}'
|
||||||
|
eval PR_USER_OP='${PR_GREEN}%#${PR_NO_COLOR}'
|
||||||
|
local PR_PROMPT='$PR_NO_COLOR➤ $PR_NO_COLOR'
|
||||||
|
elif [[ $UID -eq 0 ]]; then # root
|
||||||
|
eval PR_USER='${PR_RED}%n${PR_NO_COLOR}'
|
||||||
|
eval PR_USER_OP='${PR_RED}%#${PR_NO_COLOR}'
|
||||||
|
local PR_PROMPT='$PR_RED➤ $PR_NO_COLOR'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check if we are on SSH or not
|
||||||
|
if [[ -n "$SSH_CLIENT" || -n "$SSH2_CLIENT" ]]; then
|
||||||
|
eval PR_HOST='${PR_YELLOW}%M${PR_NO_COLOR}' #SSH
|
||||||
|
else
|
||||||
|
eval PR_HOST='${PR_GREEN}%M${PR_NO_COLOR}' # no SSH
|
||||||
|
fi
|
||||||
|
|
||||||
|
local return_code="%(?..%{$PR_RED%}%? ↵%{$PR_NO_COLOR%})"
|
||||||
|
|
||||||
|
local user_host='${PR_USER}${PR_CYAN}@${PR_HOST}'
|
||||||
|
local current_dir='%{$PR_BOLD$PR_BLUE%}%~%{$PR_NO_COLOR%}'
|
||||||
|
local rvm_ruby=''
|
||||||
|
if which rvm-prompt &> /dev/null; then
|
||||||
|
rvm_ruby='%{$PR_RED%}‹$(rvm-prompt i v g s)›%{$PR_NO_COLOR%}'
|
||||||
|
else
|
||||||
|
if which rbenv &> /dev/null; then
|
||||||
|
rvm_ruby='%{$PR_RED%}‹$(rbenv version | sed -e "s/ (set.*$//")›%{$PR_NO_COLOR%}'
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
local git_branch='$(git_prompt_info)%{$PR_NO_COLOR%}'
|
||||||
|
|
||||||
|
#PROMPT="${user_host} ${current_dir} ${rvm_ruby} ${git_branch}$PR_PROMPT "
|
||||||
|
PROMPT="╭─${user_host} ${current_dir} ${rvm_ruby} ${git_branch}
|
||||||
|
╰─$PR_PROMPT "
|
||||||
|
RPS1="${return_code}"
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$PR_YELLOW%}‹"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$PR_NO_COLOR%}"
|
||||||
|
|
@ -3,8 +3,22 @@
|
||||||
|
|
||||||
local return_code="%(?..%{$fg_bold[red]%}%? ↵%{$reset_color%})"
|
local return_code="%(?..%{$fg_bold[red]%}%? ↵%{$reset_color%})"
|
||||||
|
|
||||||
PROMPT='%{$fg_bold[green]%}%n@%m%{$reset_color%} %{$fg_bold[blue]%}%2~%{$reset_color%} $(git_prompt_info)%{$reset_color%}%B»%b '
|
function my_git_prompt_info() {
|
||||||
|
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
|
||||||
|
GIT_STATUS=$(git_prompt_status)
|
||||||
|
[[ -n $GIT_STATUS ]] && GIT_STATUS=" $GIT_STATUS"
|
||||||
|
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$GIT_STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX"
|
||||||
|
}
|
||||||
|
|
||||||
|
PROMPT='%{$fg_bold[green]%}%n@%m%{$reset_color%} %{$fg_bold[blue]%}%2~%{$reset_color%} $(my_git_prompt_info)%{$reset_color%}%B»%b '
|
||||||
RPS1="${return_code}"
|
RPS1="${return_code}"
|
||||||
|
|
||||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}("
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}("
|
||||||
ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}"
|
ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%%"
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED="+"
|
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="*"
|
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED="~"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="!"
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="?"
|
||||||
|
|
||||||
|
|
|
||||||
4
themes/norm.zsh-theme
Normal file
4
themes/norm.zsh-theme
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
PROMPT='%{$fg[yellow]%}λ %{$fg[green]%}%c %{$fg[yellow]%}→ $(git_prompt_info)%{$reset_color%}'
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="λ %{$fg[blue]%}git %{$fg[red]%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg[yellow]%} → %{$reset_color%}"
|
||||||
|
|
@ -7,8 +7,8 @@ RPROMPT='[%*]'
|
||||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}(%{$fg_no_bold[red]%}%B"
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}(%{$fg_no_bold[red]%}%B"
|
||||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%b%{$fg_bold[blue]%})%{$reset_color%} "
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%b%{$fg_bold[blue]%})%{$reset_color%} "
|
||||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}"
|
ZSH_THEME_GIT_PROMPT_DIRTY="*"
|
||||||
|
|
||||||
# LS colors, made with http://geoff.greer.fm/lscolors/
|
# LS colors, made with http://geoff.greer.fm/lscolors/
|
||||||
export LSCOLORS="Gxfxcxdxbxegedabagacad"
|
export LSCOLORS="Gxfxcxdxbxegedabagacad"
|
||||||
export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:'
|
export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.patch=00;34:*.o=00;32:*.so=01;35:*.ko=01;31:*.la=00;33'
|
||||||
|
|
|
||||||
29
themes/rkj-repos.zsh-theme
Normal file
29
themes/rkj-repos.zsh-theme
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
# user, host, full path, and time/date
|
||||||
|
# on two lines for easier vgrepping
|
||||||
|
# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
|
||||||
|
|
||||||
|
function hg_prompt_info {
|
||||||
|
hg prompt --angle-brackets "\
|
||||||
|
<hg:%{$fg[magenta]%}<branch>%{$reset_color%}>\
|
||||||
|
</%{$fg[yellow]%}<tags|%{$reset_color%}, %{$fg[yellow]%}>%{$reset_color%}>\
|
||||||
|
%{$fg[red]%}<status|modified|unknown><update>%{$reset_color%}<
|
||||||
|
patches: <patches|join( → )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset_color%})|pre_unapplied(%{$fg_bold[black]%})|post_unapplied(%{$reset_color%})>>" 2>/dev/null
|
||||||
|
}
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%}+"
|
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%}✱"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}✗"
|
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}➦"
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%}✂"
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%}✈"
|
||||||
|
|
||||||
|
function mygit() {
|
||||||
|
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
|
||||||
|
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$( git_prompt_status )%{$reset_color%}$ZSH_THEME_GIT_PROMPT_SUFFIX"
|
||||||
|
}
|
||||||
|
|
||||||
|
# alternate prompt with git & hg
|
||||||
|
PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%Y-%m-%d %I:%M:%S"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%}
|
||||||
|
%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B] <$(mygit)$(hg_prompt_info)>%{\e[0m%}%b '
|
||||||
|
PS2=$' \e[0;34m%}%B>%{\e[0m%}%b '
|
||||||
|
|
||||||
8
themes/rkj.zsh-theme
Normal file
8
themes/rkj.zsh-theme
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
# user, host, full path, and time/date
|
||||||
|
# on two lines for easier vgrepping
|
||||||
|
# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
|
||||||
|
|
||||||
|
PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%Y-%m-%d %I:%M:%S"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%}
|
||||||
|
%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B]%{\e[0m%}%b '
|
||||||
|
|
||||||
|
|
||||||
96
themes/sunrise.zsh-theme
Normal file
96
themes/sunrise.zsh-theme
Normal file
|
|
@ -0,0 +1,96 @@
|
||||||
|
#-------------------------------------------------------------------------------
|
||||||
|
# Sunrise theme for oh-my-zsh by Adam Lindberg (eproxus@gmail.com)
|
||||||
|
# Intended to be used with Solarized: http://ethanschoonover.com/solarized
|
||||||
|
# (Needs Git plugin for current_branch method)
|
||||||
|
#-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Color shortcuts
|
||||||
|
R=$fg[red]
|
||||||
|
G=$fg[green]
|
||||||
|
M=$fg[magenta]
|
||||||
|
RB=$fg_bold[red]
|
||||||
|
YB=$fg_bold[yellow]
|
||||||
|
BB=$fg_bold[blue]
|
||||||
|
RESET=$reset_color
|
||||||
|
|
||||||
|
if [ "$(whoami)" = "root" ]; then
|
||||||
|
PROMPTCOLOR="%{$RB%}" PREFIX="-!-";
|
||||||
|
else
|
||||||
|
PROMPTCOLOR="" PREFIX="---";
|
||||||
|
fi
|
||||||
|
|
||||||
|
local return_code="%(?..%{$R%}%? ↵%{$RESET%})"
|
||||||
|
|
||||||
|
# Get the status of the working tree (copied and modified from git.zsh)
|
||||||
|
custom_git_prompt_status() {
|
||||||
|
INDEX=$(git status --porcelain 2> /dev/null)
|
||||||
|
STATUS=""
|
||||||
|
# Non-staged
|
||||||
|
if $(echo "$INDEX" | grep '^?? ' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_UNTRACKED$STATUS"
|
||||||
|
fi
|
||||||
|
if $(echo "$INDEX" | grep '^UU ' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_UNMERGED$STATUS"
|
||||||
|
fi
|
||||||
|
if $(echo "$INDEX" | grep '^ D ' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS"
|
||||||
|
fi
|
||||||
|
if $(echo "$INDEX" | grep '^.M ' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS"
|
||||||
|
elif $(echo "$INDEX" | grep '^AM ' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS"
|
||||||
|
elif $(echo "$INDEX" | grep '^ T ' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS"
|
||||||
|
fi
|
||||||
|
# Staged
|
||||||
|
if $(echo "$INDEX" | grep '^D ' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_DELETED$STATUS"
|
||||||
|
fi
|
||||||
|
if $(echo "$INDEX" | grep '^R' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_RENAMED$STATUS"
|
||||||
|
fi
|
||||||
|
if $(echo "$INDEX" | grep '^M' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_MODIFIED$STATUS"
|
||||||
|
fi
|
||||||
|
if $(echo "$INDEX" | grep '^A' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_ADDED$STATUS"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if $(echo -n "$STATUS" | grep '.*' &> /dev/null); then
|
||||||
|
STATUS="$ZSH_THEME_GIT_STATUS_PREFIX$STATUS"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo $STATUS
|
||||||
|
}
|
||||||
|
|
||||||
|
# get the name of the branch we are on (copied and modified from git.zsh)
|
||||||
|
function custom_git_prompt() {
|
||||||
|
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
|
||||||
|
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$(git_prompt_ahead)$(custom_git_prompt_status)$ZSH_THEME_GIT_PROMPT_SUFFIX"
|
||||||
|
}
|
||||||
|
|
||||||
|
# %B sets bold text
|
||||||
|
PROMPT='%B$PREFIX %2~ $(custom_git_prompt)%{$M%}%B»%b%{$RESET%} '
|
||||||
|
RPS1="${return_code}"
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$YB%}‹"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$YB%}›%{$RESET%} "
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$R%}*"
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_AHEAD="%{$BB%}➔"
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_STATUS_PREFIX=" "
|
||||||
|
|
||||||
|
# Staged
|
||||||
|
ZSH_THEME_GIT_PROMPT_STAGED_ADDED="%{$G%}A"
|
||||||
|
ZSH_THEME_GIT_PROMPT_STAGED_MODIFIED="%{$G%}M"
|
||||||
|
ZSH_THEME_GIT_PROMPT_STAGED_RENAMED="%{$G%}R"
|
||||||
|
ZSH_THEME_GIT_PROMPT_STAGED_DELETED="%{$G%}D"
|
||||||
|
|
||||||
|
# Not-staged
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$R%}⁇"
|
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$R%}M"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$R%}D"
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$R%}UU"
|
||||||
18
themes/superjarin.zsh-theme
Normal file
18
themes/superjarin.zsh-theme
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Grab the current version of ruby in use (via RVM): [ruby-1.8.7]
|
||||||
|
JARIN_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[red]%}\$(~/.rvm/bin/rvm-prompt i v)%{$fg[white]%}]%{$reset_color%}"
|
||||||
|
|
||||||
|
# Grab the current filepath, use shortcuts: ~/Desktop
|
||||||
|
# Append the current git branch, if in a git repository
|
||||||
|
JARIN_CURRENT_LOCA_="%{$fg_bold[cyan]%}%~\$(git_prompt_info)%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%} <%{$fg[magenta]%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||||
|
|
||||||
|
# Do nothing if the branch is clean (no changes).
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$reset_color%}>"
|
||||||
|
|
||||||
|
# Add a yellow ✗ if the branch is dirty
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$reset_color%}> %{$fg[yellow]%}✗"
|
||||||
|
|
||||||
|
# Put it all together!
|
||||||
|
PROMPT="$JARIN_CURRENT_RUBY_ $JARIN_CURRENT_LOCA_ "
|
||||||
|
|
||||||
9
themes/terminalparty.zsh-theme
Normal file
9
themes/terminalparty.zsh-theme
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
PROMPT='%{$fg[green]%} %% '
|
||||||
|
# RPS1='%{$fg[blue]%}%~%{$reset_color%} '
|
||||||
|
RPS1='%{$fg[white]%}%2~$(git_prompt_info) %{$fg_bold[blue]%}%m%{$reset_color%}'
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" (%{$fg[yellow]%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%} ⚡%{$fg[yellow]%}"
|
||||||
|
|
||||||
107
themes/wedisagree.zsh-theme
Normal file
107
themes/wedisagree.zsh-theme
Normal file
|
|
@ -0,0 +1,107 @@
|
||||||
|
# On a mac with snow leopard, for nicer terminal colours:
|
||||||
|
|
||||||
|
# - Install SIMBL: http://www.culater.net/software/SIMBL/SIMBL.php
|
||||||
|
# - Download'Terminal-Colours': http://bwaht.net/code/TerminalColours.bundle.zip
|
||||||
|
# - Place that bundle in ~/Library/Application\ Support/SIMBL/Plugins (create that folder if it doesn't exist)
|
||||||
|
# - Open Terminal preferences. Go to Settings -> Text -> More
|
||||||
|
# - Change default colours to your liking.
|
||||||
|
#
|
||||||
|
# Here are the colours from Textmate's Monokai theme:
|
||||||
|
#
|
||||||
|
# Black: 0, 0, 0
|
||||||
|
# Red: 229, 34, 34
|
||||||
|
# Green: 166, 227, 45
|
||||||
|
# Yellow: 252, 149, 30
|
||||||
|
# Blue: 196, 141, 255
|
||||||
|
# Magenta: 250, 37, 115
|
||||||
|
# Cyan: 103, 217, 240
|
||||||
|
# White: 242, 242, 242
|
||||||
|
|
||||||
|
# Thanks to Steve Losh: http://stevelosh.com/blog/2009/03/candy-colored-terminal/
|
||||||
|
|
||||||
|
# The prompt
|
||||||
|
|
||||||
|
PROMPT='%{$fg[magenta]%}[%c] %{$reset_color%}'
|
||||||
|
|
||||||
|
# The right-hand prompt
|
||||||
|
|
||||||
|
RPROMPT='${time} %{$fg[magenta]%}$(git_prompt_info)%{$reset_color%}$(git_prompt_status)%{$reset_color%}'
|
||||||
|
|
||||||
|
# Add this at the start of RPROMPT to include rvm info showing ruby-version@gemset-name
|
||||||
|
# %{$fg[yellow]%}$(~/.rvm/bin/rvm-prompt)%{$reset_color%}
|
||||||
|
|
||||||
|
# local time, color coded by last return code
|
||||||
|
time_enabled="%(?.%{$fg[green]%}.%{$fg[red]%})%*%{$reset_color%}"
|
||||||
|
time_disabled="%{$fg[green]%}%*%{$reset_color%}"
|
||||||
|
time=$time_enabled
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" ☁ %{$fg[red]%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%} ☂" # Ⓓ
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" # ⓣ
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%} ☀" # Ⓞ
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%} ✚" # ⓐ ⑃
|
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%} ⚡" # ⓜ ⑁
|
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" # ⓧ ⑂
|
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%} ➜" # ⓡ ⑄
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%} ♒" # ⓤ ⑊
|
||||||
|
|
||||||
|
# More symbols to choose from:
|
||||||
|
# ☀ ✹ ☄ ♆ ♀ ♁ ♐ ♇ ♈ ♉ ♚ ♛ ♜ ♝ ♞ ♟ ♠ ♣ ⚢ ⚲ ⚳ ⚴ ⚥ ⚤ ⚦ ⚒ ⚑ ⚐ ♺ ♻ ♼ ☰ ☱ ☲ ☳ ☴ ☵ ☶ ☷
|
||||||
|
# ✡ ✔ ✖ ✚ ✱ ✤ ✦ ❤ ➜ ➟ ➼ ✂ ✎ ✐ ⨀ ⨁ ⨂ ⨍ ⨎ ⨏ ⨷ ⩚ ⩛ ⩡ ⩱ ⩲ ⩵ ⩶ ⨠
|
||||||
|
# ⬅ ⬆ ⬇ ⬈ ⬉ ⬊ ⬋ ⬒ ⬓ ⬔ ⬕ ⬖ ⬗ ⬘ ⬙ ⬟ ⬤ 〒 ǀ ǁ ǂ ĭ Ť Ŧ
|
||||||
|
|
||||||
|
# Determine if we are using a gemset.
|
||||||
|
function rvm_gemset() {
|
||||||
|
GEMSET=`rvm gemset list | grep '=>' | cut -b4-`
|
||||||
|
if [[ -n $GEMSET ]]; then
|
||||||
|
echo "%{$fg[yellow]%}$GEMSET%{$reset_color%}|"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Determine the time since last commit. If branch is clean,
|
||||||
|
# use a neutral color, otherwise colors will vary according to time.
|
||||||
|
function git_time_since_commit() {
|
||||||
|
if git rev-parse --git-dir > /dev/null 2>&1; then
|
||||||
|
# Only proceed if there is actually a commit.
|
||||||
|
if [[ $(git log 2>&1 > /dev/null | grep -c "^fatal: bad default revision") == 0 ]]; then
|
||||||
|
# Get the last commit.
|
||||||
|
last_commit=`git log --pretty=format:'%at' -1 2> /dev/null`
|
||||||
|
now=`date +%s`
|
||||||
|
seconds_since_last_commit=$((now-last_commit))
|
||||||
|
|
||||||
|
# Totals
|
||||||
|
MINUTES=$((seconds_since_last_commit / 60))
|
||||||
|
HOURS=$((seconds_since_last_commit/3600))
|
||||||
|
|
||||||
|
# Sub-hours and sub-minutes
|
||||||
|
DAYS=$((seconds_since_last_commit / 86400))
|
||||||
|
SUB_HOURS=$((HOURS % 24))
|
||||||
|
SUB_MINUTES=$((MINUTES % 60))
|
||||||
|
|
||||||
|
if [[ -n $(git status -s 2> /dev/null) ]]; then
|
||||||
|
if [ "$MINUTES" -gt 30 ]; then
|
||||||
|
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG"
|
||||||
|
elif [ "$MINUTES" -gt 10 ]; then
|
||||||
|
COLOR="$ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM"
|
||||||
|
else
|
||||||
|
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$HOURS" -gt 24 ]; then
|
||||||
|
echo "($(rvm_gemset)$COLOR${DAYS}d${SUB_HOURS}h${SUB_MINUTES}m%{$reset_color%}|"
|
||||||
|
elif [ "$MINUTES" -gt 60 ]; then
|
||||||
|
echo "($(rvm_gemset)$COLOR${HOURS}h${SUB_MINUTES}m%{$reset_color%}|"
|
||||||
|
else
|
||||||
|
echo "($(rvm_gemset)$COLOR${MINUTES}m%{$reset_color%}|"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
|
||||||
|
echo "($(rvm_gemset)$COLOR~|"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
5
themes/wuffers.zsh-theme
Normal file
5
themes/wuffers.zsh-theme
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}["
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%} "
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%} x%{$fg_bold[blue]%}"
|
||||||
|
|
||||||
|
PROMPT='%{$(git_prompt_info)%}%{$fg_bold[green]%}{%{$(rvm current)%}}%{$reset_color%} %{$fg[cyan]%}%c%{$reset_color%} '
|
||||||
|
|
@ -24,7 +24,7 @@ then
|
||||||
read line
|
read line
|
||||||
if [ "$line" = Y ] || [ "$line" = y ]
|
if [ "$line" = Y ] || [ "$line" = y ]
|
||||||
then
|
then
|
||||||
/bin/sh $ZSH/tools/upgrade.sh
|
/usr/bin/env ZSH=$ZSH /bin/sh $ZSH/tools/upgrade.sh
|
||||||
# update the zsh file
|
# update the zsh file
|
||||||
_update_zsh_update
|
_update_zsh_update
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
161
tools/require_tool.sh
Executable file
161
tools/require_tool.sh
Executable file
|
|
@ -0,0 +1,161 @@
|
||||||
|
__require_tool_version_compare ()
|
||||||
|
{
|
||||||
|
(
|
||||||
|
# Locally ignore failures, otherwise we'll exit whenever $1 and $2
|
||||||
|
# are not equal!
|
||||||
|
set +e
|
||||||
|
|
||||||
|
awk_strverscmp='
|
||||||
|
# Use only awk features that work with 7th edition Unix awk (1978).
|
||||||
|
# My, what an old awk you have, Mr. Solaris!
|
||||||
|
END {
|
||||||
|
while (length(v1) || length(v2)) {
|
||||||
|
# Set d1 to be the next thing to compare from v1, and likewise for d2.
|
||||||
|
# Normally this is a single character, but if v1 and v2 contain digits,
|
||||||
|
# compare them as integers and fractions as strverscmp does.
|
||||||
|
if (v1 ~ /^[0-9]/ && v2 ~ /^[0-9]/) {
|
||||||
|
# Split v1 and v2 into their leading digit string components d1 and d2,
|
||||||
|
# and advance v1 and v2 past the leading digit strings.
|
||||||
|
for (len1 = 1; substr(v1, len1 + 1) ~ /^[0-9]/; len1++) continue
|
||||||
|
for (len2 = 1; substr(v2, len2 + 1) ~ /^[0-9]/; len2++) continue
|
||||||
|
d1 = substr(v1, 1, len1); v1 = substr(v1, len1 + 1)
|
||||||
|
d2 = substr(v2, 1, len2); v2 = substr(v2, len2 + 1)
|
||||||
|
if (d1 ~ /^0/) {
|
||||||
|
if (d2 ~ /^0/) {
|
||||||
|
# Compare two fractions.
|
||||||
|
while (d1 ~ /^0/ && d2 ~ /^0/) {
|
||||||
|
d1 = substr(d1, 2); len1--
|
||||||
|
d2 = substr(d2, 2); len2--
|
||||||
|
}
|
||||||
|
if (len1 != len2 && ! (len1 && len2 && substr(d1, 1, 1) == substr(d2, 1, 1))) {
|
||||||
|
# The two components differ in length, and the common prefix
|
||||||
|
# contains only leading zeros. Consider the longer to be less.
|
||||||
|
d1 = -len1
|
||||||
|
d2 = -len2
|
||||||
|
} else {
|
||||||
|
# Otherwise, compare as strings.
|
||||||
|
d1 = "x" d1
|
||||||
|
d2 = "x" d2
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
# A fraction is less than an integer.
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (d2 ~ /^0/) {
|
||||||
|
# An integer is greater than a fraction.
|
||||||
|
exit 2
|
||||||
|
} else {
|
||||||
|
# Compare two integers.
|
||||||
|
d1 += 0
|
||||||
|
d2 += 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
# The normal case, without worrying about digits.
|
||||||
|
if (v1 == "") d1 = v1; else { d1 = substr(v1, 1, 1); v1 = substr(v1,2) }
|
||||||
|
if (v2 == "") d2 = v2; else { d2 = substr(v2, 1, 1); v2 = substr(v2,2) }
|
||||||
|
}
|
||||||
|
if (d1 < d2) exit 1
|
||||||
|
if (d1 > d2) exit 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
'
|
||||||
|
awk "$awk_strverscmp" v1="$1" v2="$2" /dev/null
|
||||||
|
case $? in
|
||||||
|
1) echo '<';;
|
||||||
|
0) echo '=';;
|
||||||
|
2) echo '>';;
|
||||||
|
esac
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
__require_tool_fatal ()
|
||||||
|
{
|
||||||
|
echo $@ >/dev/stderr
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# Usage: require_tool program version
|
||||||
|
# Returns: 0 if $1 version if greater equals than $2, 1 otherwise.
|
||||||
|
# In case of error, message is written on error output.
|
||||||
|
#
|
||||||
|
# Example: require_tool gcc 4.6
|
||||||
|
# Use GCC environment variable if defined instead of lookup for the tool
|
||||||
|
# in the environment.
|
||||||
|
require_tool ()
|
||||||
|
{
|
||||||
|
envvar_name=$(echo $1 | tr '[:lower:]' '[:upper:]')
|
||||||
|
tool=$(printenv $envvar_name || echo $1)
|
||||||
|
local version=$($tool --version 2>/dev/null| \
|
||||||
|
sed -n 's/.*[^0-9.]\([0-9]*\.[0-9.]*\).*/\1/p;q')
|
||||||
|
if test x"$version" = x ; then
|
||||||
|
echo "$tool is required" >/dev/stderr
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
case $(__require_tool_version_compare "$2" "$version") in
|
||||||
|
'>')
|
||||||
|
echo "$1 $2 or better is required: this is $tool $version" >/dev/stderr
|
||||||
|
return 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
cat <<EOF
|
||||||
|
NAME
|
||||||
|
require_tool.sh - Ensure version of a tool is greater than the one expected
|
||||||
|
|
||||||
|
SYNOPSYS
|
||||||
|
require_tool.sh [ -h ]
|
||||||
|
[ --help ]
|
||||||
|
[ TOOL MIN_VERSION ]
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
TOOL is the name or path of the program to check. If the name is specified, its
|
||||||
|
path is deduced from PATH environment variable. If environment variable TOOL
|
||||||
|
(in upper-case characters) is defined, considers its value as path to the tool.
|
||||||
|
|
||||||
|
MIN_VERSION is a string representing the minimum required version.
|
||||||
|
|
||||||
|
BEHAVIOR
|
||||||
|
* locate path to the program.
|
||||||
|
* execute $ TOOL_PATH --version
|
||||||
|
* extract version from standard output.
|
||||||
|
* compare this version to the expected one.
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
-h --help
|
||||||
|
Display this message and exit 0
|
||||||
|
|
||||||
|
ERRORS
|
||||||
|
if program is not found or its version is prior to expected version,
|
||||||
|
a message is written to error output.
|
||||||
|
|
||||||
|
EXIT VALUE
|
||||||
|
returns 0 if program version if greater equals than expected version,
|
||||||
|
returns 1 otherwise.
|
||||||
|
|
||||||
|
EXAMPLE
|
||||||
|
$ require_tool.sh emacs 23
|
||||||
|
$ CC=g++ require_tool.sh cc 4.6
|
||||||
|
$ require_tool.sh zsh 4.5
|
||||||
|
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
for arg in $@; do
|
||||||
|
case $arg in
|
||||||
|
-h|--help)
|
||||||
|
usage
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
if [ $# -gt 2 ] ; then
|
||||||
|
echo "ERROR: expecting 2 parameters. Please see option --help"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
require_tool $@
|
||||||
96
tools/theme_chooser.sh
Executable file
96
tools/theme_chooser.sh
Executable file
|
|
@ -0,0 +1,96 @@
|
||||||
|
#!/bin/zsh
|
||||||
|
|
||||||
|
# Zsh Theme Chooser by fox (fox91 at anche dot no)
|
||||||
|
# This program is free software. It comes without any warranty, to
|
||||||
|
# the extent permitted by applicable law. You can redistribute it
|
||||||
|
# and/or modify it under the terms of the Do What The Fuck You Want
|
||||||
|
# To Public License, Version 2, as published by Sam Hocevar. See
|
||||||
|
# http://sam.zoy.org/wtfpl/COPYING for more details.
|
||||||
|
|
||||||
|
THEMES_DIR="$ZSH/themes"
|
||||||
|
FAVLIST="${HOME}/.zsh_favlist"
|
||||||
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
function noyes() {
|
||||||
|
read "a?$1 [y/N] "
|
||||||
|
if [[ $a == "N" || $a == "n" || $a = "" ]]; then
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
function theme_preview() {
|
||||||
|
THEME=$1
|
||||||
|
THEME_NAME=`echo $THEME | sed s/\.zsh-theme$//`
|
||||||
|
print "$fg[blue]${(l.((${COLUMNS}-${#THEME_NAME}-5))..─.)}$reset_color $THEME_NAME $fg[blue]───$reset_color"
|
||||||
|
source "$THEMES_DIR/$THEME"
|
||||||
|
print -P $PROMPT
|
||||||
|
}
|
||||||
|
|
||||||
|
function banner() {
|
||||||
|
echo
|
||||||
|
echo "[0;1;35;95m╺━[0;1;31;91m┓┏[0;1;33;93m━┓[0;1;32;92m╻[0m [0;1;36;96m╻[0m [0;1;35;95m╺┳[0;1;31;91m╸╻[0m [0;1;33;93m╻[0;1;32;92m┏━[0;1;36;96m╸┏[0;1;34;94m┳┓[0;1;35;95m┏━[0;1;31;91m╸[0m [0;1;32;92m┏━[0;1;36;96m╸╻[0m [0;1;34;94m╻[0;1;35;95m┏━[0;1;31;91m┓┏[0;1;33;93m━┓[0;1;32;92m┏━[0;1;36;96m┓┏[0;1;34;94m━╸[0;1;35;95m┏━[0;1;31;91m┓[0m"
|
||||||
|
echo "[0;1;31;91m┏━[0;1;33;93m┛┗[0;1;32;92m━┓[0;1;36;96m┣━[0;1;34;94m┫[0m [0;1;31;91m┃[0m [0;1;33;93m┣[0;1;32;92m━┫[0;1;36;96m┣╸[0m [0;1;34;94m┃[0;1;35;95m┃┃[0;1;31;91m┣╸[0m [0;1;36;96m┃[0m [0;1;34;94m┣[0;1;35;95m━┫[0;1;31;91m┃[0m [0;1;33;93m┃┃[0m [0;1;32;92m┃[0;1;36;96m┗━[0;1;34;94m┓┣[0;1;35;95m╸[0m [0;1;31;91m┣┳[0;1;33;93m┛[0m"
|
||||||
|
echo "[0;1;33;93m┗━[0;1;32;92m╸┗[0;1;36;96m━┛[0;1;34;94m╹[0m [0;1;35;95m╹[0m [0;1;33;93m╹[0m [0;1;32;92m╹[0m [0;1;36;96m╹[0;1;34;94m┗━[0;1;35;95m╸╹[0m [0;1;31;91m╹[0;1;33;93m┗━[0;1;32;92m╸[0m [0;1;34;94m┗━[0;1;35;95m╸╹[0m [0;1;31;91m╹[0;1;33;93m┗━[0;1;32;92m┛┗[0;1;36;96m━┛[0;1;34;94m┗━[0;1;35;95m┛┗[0;1;31;91m━╸[0;1;33;93m╹┗[0;1;32;92m╸[0m"
|
||||||
|
echo
|
||||||
|
}
|
||||||
|
|
||||||
|
function usage() {
|
||||||
|
echo "Usage: $0 [options] [theme]"
|
||||||
|
echo
|
||||||
|
echo "Options"
|
||||||
|
echo " -l List available themes"
|
||||||
|
echo " -s Show all themes"
|
||||||
|
echo " -h Get this help message"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
function list_themes() {
|
||||||
|
for THEME in $(ls $THEMES_DIR); do
|
||||||
|
THEME_NAME=`echo $THEME | sed s/\.zsh-theme$//`
|
||||||
|
echo $THEME_NAME
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
function insert_favlist() {
|
||||||
|
if grep -q "$THEME_NAME" $FAVLIST 2> /dev/null ; then
|
||||||
|
echo "Already in favlist"
|
||||||
|
else
|
||||||
|
echo $THEME_NAME >> $FAVLIST
|
||||||
|
echo "Saved to favlist"
|
||||||
|
fi
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function theme_chooser() {
|
||||||
|
for THEME in $(ls $THEMES_DIR); do
|
||||||
|
echo
|
||||||
|
theme_preview $THEME
|
||||||
|
echo
|
||||||
|
if [[ -z $1 ]]; then
|
||||||
|
noyes "Do you want to add it to your favourite list ($FAVLIST)?" || \
|
||||||
|
insert_favlist $THEME_NAME
|
||||||
|
echo
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
while getopts ":lhs" Option
|
||||||
|
do
|
||||||
|
case $Option in
|
||||||
|
l ) list_themes ;;
|
||||||
|
s ) theme_chooser 0 ;;
|
||||||
|
h ) usage ;;
|
||||||
|
* ) usage ;; # Default.
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ -z $Option ]]; then
|
||||||
|
if [[ -z $1 ]]; then
|
||||||
|
banner
|
||||||
|
echo
|
||||||
|
theme_chooser
|
||||||
|
else
|
||||||
|
theme_preview $1".zsh-theme"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
current_path=`pwd`
|
current_path=`pwd`
|
||||||
echo "\033[0;34mUpgrading Oh My Zsh\033[0m"
|
echo -e "\033[0;34mUpgrading Oh My Zsh\033[0m"
|
||||||
( cd $ZSH && git pull origin master )
|
( cd $ZSH && git pull origin master )
|
||||||
echo "\033[0;32m"' __ __ '"\033[0m"
|
echo -e "\033[0;32m"' __ __ '"\033[0m"
|
||||||
echo "\033[0;32m"' ____ / /_ ____ ___ __ __ ____ _____/ /_ '"\033[0m"
|
echo -e "\033[0;32m"' ____ / /_ ____ ___ __ __ ____ _____/ /_ '"\033[0m"
|
||||||
echo "\033[0;32m"' / __ \/ __ \ / __ `__ \/ / / / /_ / / ___/ __ \ '"\033[0m"
|
echo -e "\033[0;32m"' / __ \/ __ \ / __ `__ \/ / / / /_ / / ___/ __ \ '"\033[0m"
|
||||||
echo "\033[0;32m"'/ /_/ / / / / / / / / / / /_/ / / /_(__ ) / / / '"\033[0m"
|
echo -e "\033[0;32m"'/ /_/ / / / / / / / / / / /_/ / / /_(__ ) / / / '"\033[0m"
|
||||||
echo "\033[0;32m"'\____/_/ /_/ /_/ /_/ /_/\__, / /___/____/_/ /_/ '"\033[0m"
|
echo -e "\033[0;32m"'\____/_/ /_/ /_/ /_/ /_/\__, / /___/____/_/ /_/ '"\033[0m"
|
||||||
echo "\033[0;32m"' /____/ '"\033[0m"
|
echo -e "\033[0;32m"' /____/ '"\033[0m"
|
||||||
echo "\033[0;34mHooray! Oh My Zsh has been updated and/or is at the current version.\033[0m"
|
echo -e "\033[0;34mHooray! Oh My Zsh has been updated and/or is at the current version.\033[0m"
|
||||||
echo "\033[0;34mTo keep up on the latest, be sure to follow Oh My Zsh on twitter: \033[1mhttp://twitter.com/ohmyzsh\033[0m"
|
echo -e "\033[0;34mTo keep up on the latest, be sure to follow Oh My Zsh on twitter: \033[1mhttp://twitter.com/ohmyzsh\033[0m"
|
||||||
cd $current_path
|
cd "$current_path"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue