mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
This commit is contained in:
commit
bf13b92392
33 changed files with 1333 additions and 13 deletions
947
functions/_hg
Normal file
947
functions/_hg
Normal file
|
|
@ -0,0 +1,947 @@
|
|||
|
||||
#compdef hg
|
||||
|
||||
# Zsh completion script for mercurial. Rename this file to _hg and copy
|
||||
# it into your zsh function path (/usr/share/zsh/site-functions for
|
||||
# instance)
|
||||
#
|
||||
# If you do not want to install it globally, you can copy it somewhere
|
||||
# else and add that directory to $fpath. This must be done before
|
||||
# compinit is called. If the file is copied to ~/.zsh.d, your ~/.zshrc
|
||||
# file could look like this:
|
||||
#
|
||||
# fpath=("$HOME/.zsh.d" $fpath)
|
||||
# autoload -U compinit
|
||||
# compinit
|
||||
#
|
||||
# Copyright (C) 2005, 2006 Steve Borho <steve@borho.org>
|
||||
# Copyright (C) 2006-9 Brendan Cully <brendan@kublai.com>
|
||||
#
|
||||
# Permission is hereby granted, without written agreement and without
|
||||
# licence or royalty fees, to use, copy, modify, and distribute this
|
||||
# software and to distribute modified versions of this software for any
|
||||
# purpose, provided that the above copyright notice and the following
|
||||
# two paragraphs appear in all copies of this software.
|
||||
#
|
||||
# In no event shall the authors be liable to any party for direct,
|
||||
# indirect, special, incidental, or consequential damages arising out of
|
||||
# the use of this software and its documentation, even if the authors
|
||||
# have been advised of the possibility of such damage.
|
||||
#
|
||||
# The authors specifically disclaim any warranties, including, but not
|
||||
# limited to, the implied warranties of merchantability and fitness for
|
||||
# a particular purpose. The software provided hereunder is on an "as
|
||||
# is" basis, and the authors have no obligation to provide maintenance,
|
||||
# support, updates, enhancements, or modifications.
|
||||
|
||||
emulate -LR zsh
|
||||
setopt extendedglob
|
||||
|
||||
local curcontext="$curcontext" state line
|
||||
typeset -A _hg_cmd_globals
|
||||
|
||||
_hg() {
|
||||
local cmd _hg_root
|
||||
integer i=2
|
||||
_hg_cmd_globals=()
|
||||
|
||||
while (( i < $#words ))
|
||||
do
|
||||
case "$words[$i]" in
|
||||
-R|--repository)
|
||||
eval _hg_root="$words[$i+1]"
|
||||
_hg_cmd_globals+=("$words[$i]" "$_hg_root")
|
||||
(( i += 2 ))
|
||||
continue
|
||||
;;
|
||||
-R*)
|
||||
_hg_cmd_globals+="$words[$i]"
|
||||
eval _hg_root="${words[$i]#-R}"
|
||||
(( i++ ))
|
||||
continue
|
||||
;;
|
||||
--cwd|--config)
|
||||
# pass along arguments to hg completer
|
||||
_hg_cmd_globals+=("$words[$i]" "$words[$i+1]")
|
||||
(( i += 2 ))
|
||||
continue
|
||||
;;
|
||||
-*)
|
||||
# skip option
|
||||
(( i++ ))
|
||||
continue
|
||||
;;
|
||||
esac
|
||||
if [[ -z "$cmd" ]]
|
||||
then
|
||||
cmd="$words[$i]"
|
||||
words[$i]=()
|
||||
(( CURRENT-- ))
|
||||
fi
|
||||
(( i++ ))
|
||||
done
|
||||
|
||||
if [[ -z "$cmd" ]]
|
||||
then
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
':mercurial command:_hg_commands'
|
||||
return
|
||||
fi
|
||||
|
||||
# resolve abbreviations and aliases
|
||||
if ! (( $+functions[_hg_cmd_${cmd}] ))
|
||||
then
|
||||
local cmdexp
|
||||
(( $#_hg_cmd_list )) || _hg_get_commands
|
||||
|
||||
cmdexp=$_hg_cmd_list[(r)${cmd}*]
|
||||
if [[ $cmdexp == $_hg_cmd_list[(R)${cmd}*] ]]
|
||||
then
|
||||
# might be nice to rewrite the command line with the expansion
|
||||
cmd="$cmdexp"
|
||||
fi
|
||||
if [[ -n $_hg_alias_list[$cmd] ]]
|
||||
then
|
||||
cmd=$_hg_alias_list[$cmd]
|
||||
fi
|
||||
fi
|
||||
|
||||
curcontext="${curcontext%:*:*}:hg-${cmd}:"
|
||||
|
||||
zstyle -s ":completion:$curcontext:" cache-policy update_policy
|
||||
|
||||
if [[ -z "$update_policy" ]]
|
||||
then
|
||||
zstyle ":completion:$curcontext:" cache-policy _hg_cache_policy
|
||||
fi
|
||||
|
||||
if (( $+functions[_hg_cmd_${cmd}] ))
|
||||
then
|
||||
_hg_cmd_${cmd}
|
||||
else
|
||||
# complete unknown commands normally
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'*:files:_hg_files'
|
||||
fi
|
||||
}
|
||||
|
||||
_hg_cache_policy() {
|
||||
typeset -a old
|
||||
|
||||
# cache for a minute
|
||||
old=( "$1"(mm+10) )
|
||||
(( $#old )) && return 0
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
_hg_get_commands() {
|
||||
typeset -ga _hg_cmd_list
|
||||
typeset -gA _hg_alias_list
|
||||
local hline cmd cmdalias
|
||||
|
||||
_call_program hg hg debugcomplete -v | while read -A hline
|
||||
do
|
||||
cmd=$hline[1]
|
||||
_hg_cmd_list+=($cmd)
|
||||
|
||||
for cmdalias in $hline[2,-1]
|
||||
do
|
||||
_hg_cmd_list+=($cmdalias)
|
||||
_hg_alias_list+=($cmdalias $cmd)
|
||||
done
|
||||
done
|
||||
}
|
||||
|
||||
_hg_commands() {
|
||||
(( $#_hg_cmd_list )) || _hg_get_commands
|
||||
_describe -t commands 'mercurial command' _hg_cmd_list
|
||||
}
|
||||
|
||||
_hg_revrange() {
|
||||
compset -P 1 '*:'
|
||||
_hg_tags "$@"
|
||||
}
|
||||
|
||||
_hg_tags() {
|
||||
typeset -a tags
|
||||
local tag rev
|
||||
|
||||
_hg_cmd tags | while read tag
|
||||
do
|
||||
tags+=(${tag/ # [0-9]#:*})
|
||||
done
|
||||
(( $#tags )) && _describe -t tags 'tags' tags
|
||||
}
|
||||
|
||||
# likely merge candidates
|
||||
_hg_mergerevs() {
|
||||
typeset -a heads
|
||||
local myrev
|
||||
|
||||
heads=(${(f)"$(_hg_cmd heads --template '{rev}\\n')"})
|
||||
# exclude own revision
|
||||
myrev=$(_hg_cmd log -r . --template '{rev}\\n')
|
||||
heads=(${heads:#$myrev})
|
||||
|
||||
(( $#heads )) && _describe -t heads 'heads' heads
|
||||
}
|
||||
|
||||
_hg_files() {
|
||||
if [[ -n "$_hg_root" ]]
|
||||
then
|
||||
[[ -d "$_hg_root/.hg" ]] || return
|
||||
case "$_hg_root" in
|
||||
/*)
|
||||
_files -W $_hg_root
|
||||
;;
|
||||
*)
|
||||
_files -W $PWD/$_hg_root
|
||||
;;
|
||||
esac
|
||||
else
|
||||
_files
|
||||
fi
|
||||
}
|
||||
|
||||
_hg_status() {
|
||||
[[ -d $PREFIX ]] || PREFIX=$PREFIX:h
|
||||
status_files=(${(ps:\0:)"$(_hg_cmd status -0n$1 ./$PREFIX)"})
|
||||
}
|
||||
|
||||
_hg_unknown() {
|
||||
typeset -a status_files
|
||||
_hg_status u
|
||||
_wanted files expl 'unknown files' _multi_parts / status_files
|
||||
}
|
||||
|
||||
_hg_missing() {
|
||||
typeset -a status_files
|
||||
_hg_status d
|
||||
_wanted files expl 'missing files' _multi_parts / status_files
|
||||
}
|
||||
|
||||
_hg_modified() {
|
||||
typeset -a status_files
|
||||
_hg_status m
|
||||
_wanted files expl 'modified files' _multi_parts / status_files
|
||||
}
|
||||
|
||||
_hg_resolve() {
|
||||
local rstate rpath
|
||||
|
||||
[[ -d $PREFIX ]] || PREFIX=$PREFIX:h
|
||||
|
||||
_hg_cmd resolve -l ./$PREFIX | while read rstate rpath
|
||||
do
|
||||
[[ $rstate == 'R' ]] && resolved_files+=($rpath)
|
||||
[[ $rstate == 'U' ]] && unresolved_files+=($rpath)
|
||||
done
|
||||
}
|
||||
|
||||
_hg_resolved() {
|
||||
typeset -a resolved_files unresolved_files
|
||||
_hg_resolve
|
||||
_wanted files expl 'resolved files' _multi_parts / resolved_files
|
||||
}
|
||||
|
||||
_hg_unresolved() {
|
||||
typeset -a resolved_files unresolved_files
|
||||
_hg_resolve
|
||||
_wanted files expl 'unresolved files' _multi_parts / unresolved_files
|
||||
}
|
||||
|
||||
_hg_config() {
|
||||
typeset -a items
|
||||
items=(${${(%f)"$(_call_program hg hg showconfig)"}%%\=*})
|
||||
(( $#items )) && _describe -t config 'config item' items
|
||||
}
|
||||
|
||||
_hg_addremove() {
|
||||
_alternative 'files:unknown files:_hg_unknown' \
|
||||
'files:missing files:_hg_missing'
|
||||
}
|
||||
|
||||
_hg_ssh_urls() {
|
||||
if [[ -prefix */ ]]
|
||||
then
|
||||
if zstyle -T ":completion:${curcontext}:files" remote-access
|
||||
then
|
||||
local host=${PREFIX%%/*}
|
||||
typeset -a remdirs
|
||||
compset -p $(( $#host + 1 ))
|
||||
local rempath=${(M)PREFIX##*/}
|
||||
local cacheid="hg:${host}-${rempath//\//_}"
|
||||
cacheid=${cacheid%[-_]}
|
||||
compset -P '*/'
|
||||
if _cache_invalid "$cacheid" || ! _retrieve_cache "$cacheid"
|
||||
then
|
||||
remdirs=(${${(M)${(f)"$(_call_program files ssh -a -x $host ls -1FL "${(q)rempath}")"}##*/}%/})
|
||||
_store_cache "$cacheid" remdirs
|
||||
fi
|
||||
_describe -t directories 'remote directory' remdirs -S/
|
||||
else
|
||||
_message 'remote directory'
|
||||
fi
|
||||
else
|
||||
if compset -P '*@'
|
||||
then
|
||||
_hosts -S/
|
||||
else
|
||||
_alternative 'hosts:remote host name:_hosts -S/' \
|
||||
'users:user:_users -S@'
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
_hg_urls() {
|
||||
if compset -P bundle://
|
||||
then
|
||||
_files
|
||||
elif compset -P ssh://
|
||||
then
|
||||
_hg_ssh_urls
|
||||
elif [[ -prefix *: ]]
|
||||
then
|
||||
_urls
|
||||
else
|
||||
local expl
|
||||
compset -S '[^:]*'
|
||||
_wanted url-schemas expl 'URL schema' compadd -S '' - \
|
||||
http:// https:// ssh:// bundle://
|
||||
fi
|
||||
}
|
||||
|
||||
_hg_paths() {
|
||||
typeset -a paths pnames
|
||||
_hg_cmd paths | while read -A pnames
|
||||
do
|
||||
paths+=($pnames[1])
|
||||
done
|
||||
(( $#paths )) && _describe -t path-aliases 'repository alias' paths
|
||||
}
|
||||
|
||||
_hg_remote() {
|
||||
_alternative 'path-aliases:repository alias:_hg_paths' \
|
||||
'directories:directory:_files -/' \
|
||||
'urls:URL:_hg_urls'
|
||||
}
|
||||
|
||||
_hg_clone_dest() {
|
||||
_alternative 'directories:directory:_files -/' \
|
||||
'urls:URL:_hg_urls'
|
||||
}
|
||||
|
||||
# Common options
|
||||
_hg_global_opts=(
|
||||
'(--repository -R)'{-R+,--repository}'[repository root directory]:repository:_files -/'
|
||||
'--cwd[change working directory]:new working directory:_files -/'
|
||||
'(--noninteractive -y)'{-y,--noninteractive}'[do not prompt, assume yes for any required answers]'
|
||||
'(--verbose -v)'{-v,--verbose}'[enable additional output]'
|
||||
'*--config[set/override config option]:defined config items:_hg_config'
|
||||
'(--quiet -q)'{-q,--quiet}'[suppress output]'
|
||||
'(--help -h)'{-h,--help}'[display help and exit]'
|
||||
'--debug[debug mode]'
|
||||
'--debugger[start debugger]'
|
||||
'--encoding[set the charset encoding (default: UTF8)]'
|
||||
'--encodingmode[set the charset encoding mode (default: strict)]'
|
||||
'--lsprof[print improved command execution profile]'
|
||||
'--traceback[print traceback on exception]'
|
||||
'--time[time how long the command takes]'
|
||||
'--profile[profile]'
|
||||
'--version[output version information and exit]'
|
||||
)
|
||||
|
||||
_hg_pat_opts=(
|
||||
'*'{-I+,--include}'[include names matching the given patterns]:dir:_files -W $(_hg_cmd root) -/'
|
||||
'*'{-X+,--exclude}'[exclude names matching the given patterns]:dir:_files -W $(_hg_cmd root) -/')
|
||||
|
||||
_hg_diff_opts=(
|
||||
'(--text -a)'{-a,--text}'[treat all files as text]'
|
||||
'(--git -g)'{-g,--git}'[use git extended diff format]'
|
||||
"--nodates[don't include dates in diff headers]")
|
||||
|
||||
_hg_dryrun_opts=(
|
||||
'(--dry-run -n)'{-n,--dry-run}'[do not perform actions, just print output]')
|
||||
|
||||
_hg_style_opts=(
|
||||
'--style[display using template map file]:'
|
||||
'--template[display with template]:')
|
||||
|
||||
_hg_commit_opts=(
|
||||
'(-m --message -l --logfile --edit -e)'{-e,--edit}'[edit commit message]'
|
||||
'(-e --edit -l --logfile --message -m)'{-m+,--message}'[use <text> as commit message]:message:'
|
||||
'(-e --edit -m --message --logfile -l)'{-l+,--logfile}'[read the commit message from <file>]:log file:_files')
|
||||
|
||||
_hg_remote_opts=(
|
||||
'(--ssh -e)'{-e+,--ssh}'[specify ssh command to use]:'
|
||||
'--remotecmd[specify hg command to run on the remote side]:')
|
||||
|
||||
_hg_cmd() {
|
||||
_call_program hg hg --config ui.verbose=0 --config defaults."$1"= \
|
||||
"$_hg_cmd_globals[@]" "$@" 2> /dev/null
|
||||
}
|
||||
|
||||
_hg_cmd_add() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
|
||||
'*:unknown files:_hg_unknown'
|
||||
}
|
||||
|
||||
_hg_cmd_addremove() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
|
||||
'(--similarity -s)'{-s+,--similarity}'[guess renamed files by similarity (0<=s<=100)]:' \
|
||||
'*:unknown or missing files:_hg_addremove'
|
||||
}
|
||||
|
||||
_hg_cmd_annotate() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts \
|
||||
'(--rev -r)'{-r+,--rev}'[annotate the specified revision]:revision:_hg_tags' \
|
||||
'(--follow -f)'{-f,--follow}'[follow file copies and renames]' \
|
||||
'(--text -a)'{-a,--text}'[treat all files as text]' \
|
||||
'(--user -u)'{-u,--user}'[list the author]' \
|
||||
'(--date -d)'{-d,--date}'[list the date]' \
|
||||
'(--number -n)'{-n,--number}'[list the revision number (default)]' \
|
||||
'(--changeset -c)'{-c,--changeset}'[list the changeset]' \
|
||||
'*:files:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_archive() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts \
|
||||
'--no-decode[do not pass files through decoders]' \
|
||||
'(--prefix -p)'{-p+,--prefix}'[directory prefix for files in archive]:' \
|
||||
'(--rev -r)'{-r+,--rev}'[revision to distribute]:revision:_hg_tags' \
|
||||
'(--type -t)'{-t+,--type}'[type of distribution to create]:archive type:(files tar tbz2 tgz uzip zip)' \
|
||||
'*:destination:_files'
|
||||
}
|
||||
|
||||
_hg_cmd_backout() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts \
|
||||
'--merge[merge with old dirstate parent after backout]' \
|
||||
'(--date -d)'{-d+,--date}'[record datecode as commit date]:date code:' \
|
||||
'--parent[parent to choose when backing out merge]' \
|
||||
'(--user -u)'{-u+,--user}'[record user as commiter]:user:' \
|
||||
'(--rev -r)'{-r+,--rev}'[revision]:revision:_hg_tags' \
|
||||
'(--message -m)'{-m+,--message}'[use <text> as commit message]:text:' \
|
||||
'(--logfile -l)'{-l+,--logfile}'[read commit message from <file>]:log file:_files -g \*.txt'
|
||||
}
|
||||
|
||||
_hg_cmd_bisect() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(-)'{-r,--reset}'[reset bisect state]' \
|
||||
'(--good -g --bad -b --skip -s --reset -r)'{-g,--good}'[mark changeset good]'::revision:_hg_tags \
|
||||
'(--good -g --bad -b --skip -s --reset -r)'{-b,--bad}'[mark changeset bad]'::revision:_hg_tags \
|
||||
'(--good -g --bad -b --skip -s --reset -r)'{-s,--skip}'[skip testing changeset]' \
|
||||
'(--command -c --noupdate -U)'{-c+,--command}'[use command to check changeset state]':commands:_command_names \
|
||||
'(--command -c --noupdate -U)'{-U,--noupdate}'[do not update to target]'
|
||||
}
|
||||
|
||||
_hg_cmd_branch() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--force -f)'{-f,--force}'[set branch name even if it shadows an existing branch]' \
|
||||
'(--clean -C)'{-C,--clean}'[reset branch name to parent branch name]'
|
||||
}
|
||||
|
||||
_hg_cmd_branches() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--active -a)'{-a,--active}'[show only branches that have unmerge heads]'
|
||||
}
|
||||
|
||||
_hg_cmd_bundle() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_remote_opts \
|
||||
'(--force -f)'{-f,--force}'[run even when remote repository is unrelated]' \
|
||||
'(2)*--base[a base changeset to specify instead of a destination]:revision:_hg_tags' \
|
||||
':output file:_files' \
|
||||
':destination repository:_files -/'
|
||||
}
|
||||
|
||||
_hg_cmd_cat() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts \
|
||||
'(--output -o)'{-o+,--output}'[print output to file with formatted name]:filespec:' \
|
||||
'(--rev -r)'{-r+,--rev}'[revision]:revision:_hg_tags' \
|
||||
'*:file:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_clone() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_remote_opts \
|
||||
'(--noupdate -U)'{-U,--noupdate}'[do not update the new working directory]' \
|
||||
'(--rev -r)'{-r+,--rev}'[a changeset you would like to have after cloning]:' \
|
||||
'--uncompressed[use uncompressed transfer (fast over LAN)]' \
|
||||
':source repository:_hg_remote' \
|
||||
':destination:_hg_clone_dest'
|
||||
}
|
||||
|
||||
_hg_cmd_commit() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts \
|
||||
'(--addremove -A)'{-A,--addremove}'[mark new/missing files as added/removed before committing]' \
|
||||
'(--message -m)'{-m+,--message}'[use <text> as commit message]:text:' \
|
||||
'(--logfile -l)'{-l+,--logfile}'[read commit message from <file>]:log file:_files -g \*.txt' \
|
||||
'(--date -d)'{-d+,--date}'[record datecode as commit date]:date code:' \
|
||||
'(--user -u)'{-u+,--user}'[record user as commiter]:user:' \
|
||||
'*:file:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_copy() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
|
||||
'(--after -A)'{-A,--after}'[record a copy that has already occurred]' \
|
||||
'(--force -f)'{-f,--force}'[forcibly copy over an existing managed file]' \
|
||||
'*:file:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_diff() {
|
||||
typeset -A opt_args
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_diff_opts \
|
||||
'*'{-r,--rev}'+[revision]:revision:_hg_revrange' \
|
||||
'(--show-function -p)'{-p,--show-function}'[show which function each change is in]' \
|
||||
'(--ignore-all-space -w)'{-w,--ignore-all-space}'[ignore white space when comparing lines]' \
|
||||
'(--ignore-space-change -b)'{-b,--ignore-space-change}'[ignore changes in the amount of white space]' \
|
||||
'(--ignore-blank-lines -B)'{-B,--ignore-blank-lines}'[ignore changes whose lines are all blank]' \
|
||||
'*:file:->diff_files'
|
||||
|
||||
if [[ $state == 'diff_files' ]]
|
||||
then
|
||||
if [[ -n $opt_args[-r] ]]
|
||||
then
|
||||
_hg_files
|
||||
else
|
||||
_hg_modified
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
_hg_cmd_export() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_diff_opts \
|
||||
'(--outout -o)'{-o+,--output}'[print output to file with formatted name]:filespec:' \
|
||||
'--switch-parent[diff against the second parent]' \
|
||||
'*:revision:_hg_tags'
|
||||
}
|
||||
|
||||
_hg_cmd_grep() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts \
|
||||
'(--print0 -0)'{-0,--print0}'[end filenames with NUL]' \
|
||||
'--all[print all revisions with matches]' \
|
||||
'(--follow -f)'{-f,--follow}'[follow changeset or file history]' \
|
||||
'(--ignore-case -i)'{-i,--ignore-case}'[ignore case when matching]' \
|
||||
'(--files-with-matches -l)'{-l,--files-with-matches}'[print only filenames and revs that match]' \
|
||||
'(--line-number -n)'{-n,--line-number}'[print matching line numbers]' \
|
||||
'*'{-r+,--rev}'[search in given revision range]:revision:_hg_revrange' \
|
||||
'(--user -u)'{-u,--user}'[print user who committed change]' \
|
||||
'1:search pattern:' \
|
||||
'*:files:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_heads() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_style_opts \
|
||||
'(--rev -r)'{-r+,--rev}'[show only heads which are descendants of rev]:revision:_hg_tags'
|
||||
}
|
||||
|
||||
_hg_cmd_help() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'*:mercurial command:_hg_commands'
|
||||
}
|
||||
|
||||
_hg_cmd_identify() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--rev -r)'{-r+,--rev}'[identify the specified rev]:revision:_hg_tags' \
|
||||
'(--num -n)'{-n+,--num}'[show local revision number]' \
|
||||
'(--id -i)'{-i+,--id}'[show global revision id]' \
|
||||
'(--branch -b)'{-b+,--branch}'[show branch]' \
|
||||
'(--tags -t)'{-t+,--tags}'[show tags]'
|
||||
}
|
||||
|
||||
_hg_cmd_import() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--strip -p)'{-p+,--strip}'[directory strip option for patch (default: 1)]:count:' \
|
||||
'(--message -m)'{-m+,--message}'[use <text> as commit message]:text:' \
|
||||
'(--force -f)'{-f,--force}'[skip check for outstanding uncommitted changes]' \
|
||||
'*:patch:_files'
|
||||
}
|
||||
|
||||
_hg_cmd_incoming() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_remote_opts $_hg_style_opts \
|
||||
'(--no-merges -M)'{-M,--no-merges}'[do not show merge revisions]' \
|
||||
'(--force -f)'{-f,--force}'[run even when the remote repository is unrelated]' \
|
||||
'(--patch -p)'{-p,--patch}'[show patch]' \
|
||||
'(--rev -r)'{-r+,--rev}'[a specific revision up to which you would like to pull]:revision:_hg_tags' \
|
||||
'(--newest-first -n)'{-n,--newest-first}'[show newest record first]' \
|
||||
'--bundle[file to store the bundles into]:bundle file:_files' \
|
||||
':source:_hg_remote'
|
||||
}
|
||||
|
||||
_hg_cmd_init() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_remote_opts \
|
||||
':dir:_files -/'
|
||||
}
|
||||
|
||||
_hg_cmd_locate() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts \
|
||||
'(--rev -r)'{-r+,--rev}'[search repository as it stood at revision]:revision:_hg_tags' \
|
||||
'(--print0 -0)'{-0,--print0}'[end filenames with NUL, for use with xargs]' \
|
||||
'(--fullpath -f)'{-f,--fullpath}'[print complete paths]' \
|
||||
'*:search pattern:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_log() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_style_opts \
|
||||
'(--follow --follow-first -f)'{-f,--follow}'[follow changeset or history]' \
|
||||
'(-f --follow)--follow-first[only follow the first parent of merge changesets]' \
|
||||
'(--copies -C)'{-C,--copies}'[show copied files]' \
|
||||
'(--keyword -k)'{-k+,--keyword}'[search for a keyword]:' \
|
||||
'(--limit -l)'{-l+,--limit}'[limit number of changes displayed]:' \
|
||||
'*'{-r,--rev}'[show the specified revision or range]:revision:_hg_revrange' \
|
||||
'(--no-merges -M)'{-M,--no-merges}'[do not show merges]' \
|
||||
'(--only-merges -m)'{-m,--only-merges}'[show only merges]' \
|
||||
'(--patch -p)'{-p,--patch}'[show patch]' \
|
||||
'(--prune -P)'{-P+,--prune}'[do not display revision or any of its ancestors]:revision:_hg_tags' \
|
||||
'*:files:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_manifest() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
':revision:_hg_tags'
|
||||
}
|
||||
|
||||
_hg_cmd_merge() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--force -f)'{-f,--force}'[force a merge with outstanding changes]' \
|
||||
'(--rev -r 1)'{-r,--rev}'[revision to merge]:revision:_hg_mergerevs' \
|
||||
'(--preview -P)'{-P,--preview}'[review revisions to merge (no merge is performed)]' \
|
||||
':revision:_hg_mergerevs'
|
||||
}
|
||||
|
||||
_hg_cmd_outgoing() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_remote_opts $_hg_style_opts \
|
||||
'(--no-merges -M)'{-M,--no-merges}'[do not show merge revisions]' \
|
||||
'(--force -f)'{-f,--force}'[run even when the remote repository is unrelated]' \
|
||||
'(--patch -p)'{-p,--patch}'[show patch]' \
|
||||
'(--rev -r)'{-r+,--rev}'[a specific revision you would like to push]' \
|
||||
'(--newest-first -n)'{-n,--newest-first}'[show newest record first]' \
|
||||
':destination:_hg_remote'
|
||||
}
|
||||
|
||||
_hg_cmd_parents() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_style_opts \
|
||||
'(--rev -r)'{-r+,--rev}'[show parents of the specified rev]:revision:_hg_tags' \
|
||||
':last modified file:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_paths() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
':path:_hg_paths'
|
||||
}
|
||||
|
||||
_hg_cmd_pull() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_remote_opts \
|
||||
'(--force -f)'{-f,--force}'[run even when the remote repository is unrelated]' \
|
||||
'(--update -u)'{-u,--update}'[update to new tip if changesets were pulled]' \
|
||||
'(--rev -r)'{-r+,--rev}'[a specific revision up to which you would like to pull]:revision:' \
|
||||
':source:_hg_remote'
|
||||
}
|
||||
|
||||
_hg_cmd_push() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_remote_opts \
|
||||
'(--force -f)'{-f,--force}'[force push]' \
|
||||
'(--rev -r)'{-r+,--rev}'[a specific revision you would like to push]:revision:_hg_tags' \
|
||||
':destination:_hg_remote'
|
||||
}
|
||||
|
||||
_hg_cmd_remove() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts \
|
||||
'(--after -A)'{-A,--after}'[record remove that has already occurred]' \
|
||||
'(--force -f)'{-f,--force}'[remove file even if modified]' \
|
||||
'*:file:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_rename() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
|
||||
'(--after -A)'{-A,--after}'[record a rename that has already occurred]' \
|
||||
'(--force -f)'{-f,--force}'[forcibly copy over an existing managed file]' \
|
||||
'*:file:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_resolve() {
|
||||
local context state line
|
||||
typeset -A opt_args
|
||||
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--list -l --mark -m --unmark -u)'{-l,--list}'[list state of files needing merge]:*:merged files:->resolve_files' \
|
||||
'(--mark -m --list -l --unmark -u)'{-m,--mark}'[mark files as resolved]:*:unresolved files:_hg_unresolved' \
|
||||
'(--unmark -u --list -l --mark -m)'{-u,--unmark}'[unmark files as resolved]:*:resolved files:_hg_resolved' \
|
||||
'*:file:_hg_unresolved'
|
||||
|
||||
if [[ $state == 'resolve_files' ]]
|
||||
then
|
||||
_alternative 'files:resolved files:_hg_resolved' \
|
||||
'files:unresolved files:_hg_unresolved'
|
||||
fi
|
||||
}
|
||||
|
||||
_hg_cmd_revert() {
|
||||
local context state line
|
||||
typeset -A opt_args
|
||||
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
|
||||
'(--all -a :)'{-a,--all}'[revert all changes when no arguments given]' \
|
||||
'(--rev -r)'{-r+,--rev}'[revision to revert to]:revision:_hg_tags' \
|
||||
'--no-backup[do not save backup copies of files]' \
|
||||
'*:file:->diff_files'
|
||||
|
||||
if [[ $state == 'diff_files' ]]
|
||||
then
|
||||
if [[ -n $opt_args[-r] ]]
|
||||
then
|
||||
_hg_files
|
||||
else
|
||||
typeset -a status_files
|
||||
_hg_status mard
|
||||
_wanted files expl 'modified, added, removed or deleted file' _multi_parts / status_files
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
_hg_cmd_serve() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--accesslog -A)'{-A+,--accesslog}'[name of access log file]:log file:_files' \
|
||||
'(--errorlog -E)'{-E+,--errorlog}'[name of error log file]:log file:_files' \
|
||||
'(--daemon -d)'{-d,--daemon}'[run server in background]' \
|
||||
'(--port -p)'{-p+,--port}'[listen port]:listen port:' \
|
||||
'(--address -a)'{-a+,--address}'[interface address]:interface address:' \
|
||||
'(--name -n)'{-n+,--name}'[name to show in web pages]:repository name:' \
|
||||
'(--templates -t)'{-t,--templates}'[web template directory]:template dir:_files -/' \
|
||||
'--style[web template style]:style' \
|
||||
'--stdio[for remote clients]' \
|
||||
'(--ipv6 -6)'{-6,--ipv6}'[use IPv6 in addition to IPv4]'
|
||||
}
|
||||
|
||||
_hg_cmd_showconfig() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--untrusted -u)'{-u+,--untrusted}'[show untrusted configuration options]' \
|
||||
':config item:_hg_config'
|
||||
}
|
||||
|
||||
_hg_cmd_status() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts \
|
||||
'(--all -A)'{-A,--all}'[show status of all files]' \
|
||||
'(--modified -m)'{-m,--modified}'[show only modified files]' \
|
||||
'(--added -a)'{-a,--added}'[show only added files]' \
|
||||
'(--removed -r)'{-r,--removed}'[show only removed files]' \
|
||||
'(--deleted -d)'{-d,--deleted}'[show only deleted (but tracked) files]' \
|
||||
'(--clean -c)'{-c,--clean}'[show only files without changes]' \
|
||||
'(--unknown -u)'{-u,--unknown}'[show only unknown files]' \
|
||||
'(--ignored -i)'{-i,--ignored}'[show ignored files]' \
|
||||
'(--no-status -n)'{-n,--no-status}'[hide status prefix]' \
|
||||
'(--copies -C)'{-C,--copies}'[show source of copied files]' \
|
||||
'(--print0 -0)'{-0,--print0}'[end filenames with NUL, for use with xargs]' \
|
||||
'--rev[show difference from revision]:revision:_hg_tags' \
|
||||
'*:files:_files'
|
||||
}
|
||||
|
||||
_hg_cmd_tag() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--local -l)'{-l,--local}'[make the tag local]' \
|
||||
'(--message -m)'{-m+,--message}'[message for tag commit log entry]:message:' \
|
||||
'(--date -d)'{-d+,--date}'[record datecode as commit date]:date code:' \
|
||||
'(--user -u)'{-u+,--user}'[record user as commiter]:user:' \
|
||||
'(--rev -r)'{-r+,--rev}'[revision to tag]:revision:_hg_tags' \
|
||||
':tag name:'
|
||||
}
|
||||
|
||||
_hg_cmd_tip() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_style_opts \
|
||||
'(--patch -p)'{-p,--patch}'[show patch]'
|
||||
}
|
||||
|
||||
_hg_cmd_unbundle() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--update -u)'{-u,--update}'[update to new tip if changesets were unbundled]' \
|
||||
':files:_files'
|
||||
}
|
||||
|
||||
_hg_cmd_update() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--clean -C)'{-C,--clean}'[overwrite locally modified files]' \
|
||||
'(--rev -r)'{-r+,--rev}'[revision]:revision:_hg_tags' \
|
||||
':revision:_hg_tags'
|
||||
}
|
||||
|
||||
# HGK
|
||||
_hg_cmd_view() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--limit -l)'{-l+,--limit}'[limit number of changes displayed]:' \
|
||||
':revision range:_hg_tags'
|
||||
}
|
||||
|
||||
# MQ
|
||||
_hg_qseries() {
|
||||
typeset -a patches
|
||||
patches=(${(f)"$(_hg_cmd qseries)"})
|
||||
(( $#patches )) && _describe -t hg-patches 'patches' patches
|
||||
}
|
||||
|
||||
_hg_qapplied() {
|
||||
typeset -a patches
|
||||
patches=(${(f)"$(_hg_cmd qapplied)"})
|
||||
if (( $#patches ))
|
||||
then
|
||||
patches+=(qbase qtip)
|
||||
_describe -t hg-applied-patches 'applied patches' patches
|
||||
fi
|
||||
}
|
||||
|
||||
_hg_qunapplied() {
|
||||
typeset -a patches
|
||||
patches=(${(f)"$(_hg_cmd qunapplied)"})
|
||||
(( $#patches )) && _describe -t hg-unapplied-patches 'unapplied patches' patches
|
||||
}
|
||||
|
||||
# unapplied, including guarded patches
|
||||
_hg_qdeletable() {
|
||||
typeset -a unapplied
|
||||
unapplied=(${(f)"$(_hg_cmd qseries)"})
|
||||
for p in $(_hg_cmd qapplied)
|
||||
do
|
||||
unapplied=(${unapplied:#$p})
|
||||
done
|
||||
|
||||
(( $#unapplied )) && _describe -t hg-allunapplied-patches 'all unapplied patches' unapplied
|
||||
}
|
||||
|
||||
_hg_qguards() {
|
||||
typeset -a guards
|
||||
local guard
|
||||
compset -P "+|-"
|
||||
_hg_cmd qselect -s | while read guard
|
||||
do
|
||||
guards+=(${guard#(+|-)})
|
||||
done
|
||||
(( $#guards )) && _describe -t hg-guards 'guards' guards
|
||||
}
|
||||
|
||||
_hg_qseries_opts=(
|
||||
'(--summary -s)'{-s,--summary}'[print first line of patch header]')
|
||||
|
||||
_hg_cmd_qapplied() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_qseries_opts
|
||||
}
|
||||
|
||||
_hg_cmd_qdelete() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--keep -k)'{-k,--keep}'[keep patch file]' \
|
||||
'*'{-r+,--rev}'[stop managing a revision]:applied patch:_hg_revrange' \
|
||||
'*:unapplied patch:_hg_qdeletable'
|
||||
}
|
||||
|
||||
_hg_cmd_qdiff() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts \
|
||||
'*:pattern:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_qfold() {
|
||||
_arguments -s -w : $_hg_global_opts $_h_commit_opts \
|
||||
'(--keep,-k)'{-k,--keep}'[keep folded patch files]' \
|
||||
'*:unapplied patch:_hg_qunapplied'
|
||||
}
|
||||
|
||||
_hg_cmd_qgoto() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--force -f)'{-f,--force}'[overwrite any local changes]' \
|
||||
':patch:_hg_qseries'
|
||||
}
|
||||
|
||||
_hg_cmd_qguard() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--list -l)'{-l,--list}'[list all patches and guards]' \
|
||||
'(--none -n)'{-n,--none}'[drop all guards]' \
|
||||
':patch:_hg_qseries' \
|
||||
'*:guards:_hg_qguards'
|
||||
}
|
||||
|
||||
_hg_cmd_qheader() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
':patch:_hg_qseries'
|
||||
}
|
||||
|
||||
_hg_cmd_qimport() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--existing -e)'{-e,--existing}'[import file in patch dir]' \
|
||||
'(--name -n 2)'{-n+,--name}'[patch file name]:name:' \
|
||||
'(--force -f)'{-f,--force}'[overwrite existing files]' \
|
||||
'*'{-r+,--rev}'[place existing revisions under mq control]:revision:_hg_revrange' \
|
||||
'*:patch:_files'
|
||||
}
|
||||
|
||||
_hg_cmd_qnew() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_commit_opts \
|
||||
'(--force -f)'{-f,--force}'[import uncommitted changes into patch]' \
|
||||
':patch:'
|
||||
}
|
||||
|
||||
_hg_cmd_qnext() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_qseries_opts
|
||||
}
|
||||
|
||||
_hg_cmd_qpop() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--all -a :)'{-a,--all}'[pop all patches]' \
|
||||
'(--name -n)'{-n+,--name}'[queue name to pop]:' \
|
||||
'(--force -f)'{-f,--force}'[forget any local changes]' \
|
||||
':patch:_hg_qapplied'
|
||||
}
|
||||
|
||||
_hg_cmd_qprev() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_qseries_opts
|
||||
}
|
||||
|
||||
_hg_cmd_qpush() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--all -a :)'{-a,--all}'[apply all patches]' \
|
||||
'(--list -l)'{-l,--list}'[list patch name in commit text]' \
|
||||
'(--merge -m)'{-m+,--merge}'[merge from another queue]:' \
|
||||
'(--name -n)'{-n+,--name}'[merge queue name]:' \
|
||||
'(--force -f)'{-f,--force}'[apply if the patch has rejects]' \
|
||||
':patch:_hg_qunapplied'
|
||||
}
|
||||
|
||||
_hg_cmd_qrefresh() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_commit_opts \
|
||||
'(--git -g)'{-g,--git}'[use git extended diff format]' \
|
||||
'(--short -s)'{-s,--short}'[short refresh]' \
|
||||
'*:files:_hg_files'
|
||||
}
|
||||
|
||||
_hg_cmd_qrename() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
':patch:_hg_qseries' \
|
||||
':destination:'
|
||||
}
|
||||
|
||||
_hg_cmd_qselect() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--none -n :)'{-n,--none}'[disable all guards]' \
|
||||
'(--series -s :)'{-s,--series}'[list all guards in series file]' \
|
||||
'--pop[pop to before first guarded applied patch]' \
|
||||
'--reapply[pop and reapply patches]' \
|
||||
'*:guards:_hg_qguards'
|
||||
}
|
||||
|
||||
_hg_cmd_qseries() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_qseries_opts \
|
||||
'(--missing -m)'{-m,--missing}'[print patches not in series]'
|
||||
}
|
||||
|
||||
_hg_cmd_qunapplied() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_qseries_opts
|
||||
}
|
||||
|
||||
_hg_cmd_qtop() {
|
||||
_arguments -s -w : $_hg_global_opts $_hg_qseries_opts
|
||||
}
|
||||
|
||||
_hg_cmd_strip() {
|
||||
_arguments -s -w : $_hg_global_opts \
|
||||
'(--force -f)'{-f,--force}'[force multi-head removal]' \
|
||||
'(--backup -b)'{-b,--backup}'[bundle unrelated changesets]' \
|
||||
'(--nobackup -n)'{-n,--nobackup}'[no backups]' \
|
||||
':revision:_hg_tags'
|
||||
}
|
||||
|
||||
_hg "$@"
|
||||
|
|
@ -9,7 +9,6 @@ alias devlog='tail -f log/development.log'
|
|||
|
||||
# Super user
|
||||
alias _='sudo'
|
||||
alias ss='sudo su -'
|
||||
|
||||
# Show history
|
||||
alias history='fc -l 1'
|
||||
|
|
|
|||
|
|
@ -4,12 +4,10 @@ unsetopt noautomenu
|
|||
setopt complete_in_word
|
||||
unsetopt always_to_end
|
||||
|
||||
unsetopt flowcontrol
|
||||
|
||||
WORDCHARS=''
|
||||
|
||||
autoload -U compinit
|
||||
compinit
|
||||
compinit -i
|
||||
|
||||
zmodload -i zsh/complist
|
||||
|
||||
|
|
@ -23,14 +21,11 @@ fi
|
|||
|
||||
zstyle ':completion:*' list-colors ''
|
||||
|
||||
unsetopt MENU_COMPLETE
|
||||
setopt AUTO_MENU
|
||||
|
||||
# should this be in keybindings?
|
||||
bindkey -M menuselect '^o' accept-and-infer-next-history
|
||||
|
||||
zstyle ':completion:*:*:*:*:*' menu select=1
|
||||
zstyle ':completion:*:*:*:*:processes' force-list always
|
||||
zstyle ':completion:*:*:*:*:*' menu select
|
||||
# zstyle ':completion:*:*:*:*:processes' force-list always
|
||||
|
||||
zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#) ([0-9a-z-]#)*=01;34=0=01'
|
||||
zstyle ':completion:*:*:*:*:processes' command "ps -u `whoami` -o pid,user,comm -w -w"
|
||||
|
|
|
|||
|
|
@ -10,3 +10,6 @@ setopt hist_verify
|
|||
setopt inc_append_history
|
||||
setopt extended_history
|
||||
setopt hist_expire_dups_first
|
||||
|
||||
setopt SHARE_HISTORY
|
||||
setopt APPEND_HISTORY
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# TODO: Explain what some of this does..
|
||||
autoload -U compinit
|
||||
compinit
|
||||
compinit -i
|
||||
|
||||
bindkey -e
|
||||
bindkey '\ew' kill-region
|
||||
|
|
|
|||
7
lib/rvm.zsh
Normal file
7
lib/rvm.zsh
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# get the name of the branch we are on
|
||||
function rvm_prompt_info() {
|
||||
ruby_version=$(~/.rvm/bin/rvm-prompt 2> /dev/null) || return
|
||||
echo "($ruby_version)"
|
||||
}
|
||||
|
||||
|
||||
20
lib/spectrum.zsh
Normal file
20
lib/spectrum.zsh
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#! /bin/zsh
|
||||
# A script to make using 256 colors in zsh less painful.
|
||||
# P.C. Shyamshankar <sykora@lucentbeing.com>
|
||||
# Copied from http://github.com/sykora/etc/blob/master/zsh/functions/spectrum/
|
||||
|
||||
typeset -Ag FX FG BG
|
||||
|
||||
FX=(
|
||||
reset "%{[00m%}"
|
||||
bold "%{[01m%}" no-bold "%{[22m%}"
|
||||
italic "%{[03m%}" no-italic "%{[23m%}"
|
||||
underline "%{[04m%}" no-underline "%{[24m%}"
|
||||
blink "%{[05m%}" no-blink "%{[25m%}"
|
||||
reverse "%{[07m%}" no-reverse "%{[27m%}"
|
||||
)
|
||||
|
||||
for color in {000..255}; do
|
||||
FG[$color]="%{[38;5;${color}m%}"
|
||||
BG[$color]="%{[48;5;${color}m%}"
|
||||
done
|
||||
|
|
@ -17,3 +17,5 @@ then
|
|||
else
|
||||
/usr/bin/env zsh $ZSH/tools/check_for_upgrade.sh
|
||||
fi
|
||||
|
||||
unset config_file
|
||||
6
themes/Soliah.zsh-theme
Normal file
6
themes/Soliah.zsh-theme
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
PROMPT='%{$fg[blue]%}%B%20~%b%{$reset_color%}%{$(git_prompt_info)%} $ '
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="(%{$fg[green]%}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%})"
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="*%{$reset_color%}"
|
||||
|
||||
10
themes/afowler.zsh-theme
Normal file
10
themes/afowler.zsh-theme
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
if [ "$(whoami)" = "root" ]; then CARETCOLOR="red"; else CARETCOLOR="blue"; fi
|
||||
|
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
|
||||
|
||||
PROMPT='%m %{${fg_bold[blue]}%}:: %{$reset_color%}%{${fg[green]}%}%3~ $(git_prompt_info)%{${fg_bold[$CARETCOLOR]}%}»%{${reset_color}%} '
|
||||
|
||||
RPS1="${return_code}"
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
|
||||
14
themes/arrow.zsh-theme
Normal file
14
themes/arrow.zsh-theme
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
if [ "$(whoami)" = "root" ]; then NCOLOR="red"; else NCOLOR="yellow"; fi
|
||||
|
||||
PROMPT='%{$fg[$NCOLOR]%}%c ➤ %{$reset_color%}'
|
||||
RPROMPT='%{$fg[$NCOLOR]%}%p $(git_prompt_info)%{$reset_color%}'
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=""
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="*"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||
|
||||
# See http://geoff.greer.fm/lscolors/
|
||||
export LSCOLORS="exfxcxdxbxbxbxbxbxbxbx"
|
||||
export LS_COLORS="di=34;40:ln=35;40:so=32;40:pi=33;40:ex=31;40:bd=31;40:cd=31;40:su=31;40:sg=31;40:tw=31;40:ow=31;40:"
|
||||
|
||||
8
themes/aussiegeek.zsh-theme
Normal file
8
themes/aussiegeek.zsh-theme
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
PROMPT='$fg_bold[blue][ $fg[red]%t $fg_bold[blue]] $fg_bold[blue] [ $fg[red]%n@%m:%~$(git_prompt_info)$fg[yellow]$(rvm_prompt_info)$fg_bold[blue] ]$reset_color
|
||||
$ '
|
||||
# git theming
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="$fg_bold[green]("
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=")"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN="✔"
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="✗"
|
||||
26
themes/dallas.zsh-theme
Normal file
26
themes/dallas.zsh-theme
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Personalized!
|
||||
|
||||
# Grab the current date (%D) and time (%T) wrapped in {}: {%D %T}
|
||||
DALLAS_CURRENT_TIME_="%{$fg[white]%}{%{$fg[yellow]%}%D %T%{$fg[white]%}}%{$reset_color%}"
|
||||
# Grab the current version of ruby in use (via RVM): [ruby-1.8.7]
|
||||
DALLAS_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[magenta]%}\$(~/.rvm/bin/rvm-prompt i v)%{$fg[white]%}]%{$reset_color%}"
|
||||
# Grab the current machine name: muscato
|
||||
DALLAS_CURRENT_MACH_="%{$fg[green]%}%m%{$fg[white]%}:%{$reset_color%}"
|
||||
# Grab the current filepath, use shortcuts: ~/Desktop
|
||||
# Append the current git branch, if in a git repository: ~aw@master
|
||||
DALLAS_CURRENT_LOCA_="%{$fg[cyan]%}%~\$(git_prompt_info)%{$reset_color%}"
|
||||
# Grab the current username: dallas
|
||||
DALLAS_CURRENT_USER_="%{$fg[red]%}%n%{$reset_color%}"
|
||||
# Use a % for normal users and a # for privelaged (root) users.
|
||||
DALLAS_PROMPT_CHAR_="%{$fg[white]%}%(!.#.%%)%{$reset_color%}"
|
||||
# For the git prompt, use a white @ and blue text for the branch name
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%}@%{$fg[blue]%}"
|
||||
# Close it all off by resetting the color and styles.
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||
# Do nothing if the branch is clean (no changes).
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||
# Add 3 cyan ✗s if this branch is diiirrrty! Dirty branch!
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[cyan]%}✗✗✗"
|
||||
|
||||
# Put it all together!
|
||||
PROMPT="$DALLAS_CURRENT_TIME_$DALLAS_CURRENT_RUBY_$DALLAS_CURRENT_MACH_$DALLAS_CURRENT_LOCA_ $DALLAS_CURRENT_USER_$DALLAS_PROMPT_CHAR_ "
|
||||
7
themes/daveverwer.zsh-theme
Normal file
7
themes/daveverwer.zsh-theme
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Copied and modified from the oh-my-zsh theme from geoffgarside
|
||||
# Red server name, green cwd, blue git status
|
||||
|
||||
PROMPT='%{$fg[red]%}%m%{$reset_color%}:%{$fg[green]%}%c%{$reset_color%}$(git_prompt_info) %(!.#.$) '
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[blue]%}("
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}"
|
||||
16
themes/dst.zsh-theme
Normal file
16
themes/dst.zsh-theme
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[green]%}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}!"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||
|
||||
function prompt_char {
|
||||
if [ "$(whoami)" = "root" ]; then echo "%{$fg[red]%}#%{$reset_color%}"; else echo $; fi
|
||||
}
|
||||
|
||||
PROMPT='%(?, ,%{$fg[red]%}FAIL%{$reset_color%}
|
||||
)
|
||||
%{$fg[magenta]%}%n%{$reset_color%}@%{$fg[yellow]%}%m%{$reset_color%}: %{$fg_bold[blue]%}%~%{$reset_color%}$(git_prompt_info)
|
||||
%_ $(prompt_char) '
|
||||
|
||||
RPROMPT='%{$fg[green]%}[%*]%{$reset_color%}'
|
||||
19
themes/dstufft.zsh-theme
Normal file
19
themes/dstufft.zsh-theme
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
function prompt_char {
|
||||
git branch >/dev/null 2>/dev/null && echo '±' && return
|
||||
hg root >/dev/null 2>/dev/null && echo 'Hg' && return
|
||||
echo '○'
|
||||
}
|
||||
|
||||
function virtualenv_info {
|
||||
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
|
||||
}
|
||||
|
||||
PROMPT='
|
||||
%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info)
|
||||
$(virtualenv_info)$(prompt_char) '
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!"
|
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||
8
themes/duellj.zsh-theme
Normal file
8
themes/duellj.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;34m%}@%{\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%}%!%{\e[0;34m%}%B]%b%{\e[0m%}
|
||||
%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B]%{\e[0m%}%b '
|
||||
RPROMPT='[%*]'
|
||||
PS2=$' \e[0;34m%}%B>%{\e[0m%}%b '
|
||||
6
themes/edvardm.zsh-theme
Normal file
6
themes/edvardm.zsh-theme
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg_bold[white]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
|
||||
6
themes/jbergantine.zsh-theme
Normal file
6
themes/jbergantine.zsh-theme
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[white]%}$(git_prompt_info)%{$fg_bold[white]%} % %{$reset_color%}'
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[white]%}) %{$fg[yellow]%}✗%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[white]%})"
|
||||
16
themes/jreese.zsh-theme
Normal file
16
themes/jreese.zsh-theme
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# ZSH Theme - Preview: http://dl.dropbox.com/u/1552408/Screenshots/2010-04-08-oh-my-zsh.png
|
||||
|
||||
if [ "$(whoami)" = "root" ]; then NCOLOR="red"; else NCOLOR="green"; fi
|
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
|
||||
|
||||
PROMPT='%{$fg[$NCOLOR]%}%n%{$fg[green]%}@%m%{$reset_color%} %~ \
|
||||
$(git_prompt_info)\
|
||||
%{$fg[red]%}%(!.#.»)%{$reset_color%} '
|
||||
PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
|
||||
RPS1='${return_code}'
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}±%{$fg[yellow]%}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="⚡"
|
||||
|
||||
80
themes/linuxonly
Normal file
80
themes/linuxonly
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
# vim: set ts=2 textwidth=0
|
||||
|
||||
autoload -U add-zsh-hook
|
||||
autoload -Uz vcs_info
|
||||
local c0=$(printf "\033[0m")
|
||||
local c1=$(printf "\033[38;5;215m")
|
||||
local c2=$(printf "\033[38;5;209m")
|
||||
local c3=$(printf "\033[38;5;203m")
|
||||
local c4=$(printf "\033[33;4m")
|
||||
local c5=$(printf "\033[38;5;137m")
|
||||
local c6=$(printf "\033[38;5;240m")
|
||||
local c7=$(printf "\033[38;5;149m")
|
||||
local c8=$(printf "\033[38;5;126m")
|
||||
local c9=$(printf "\033[38;5;162m")
|
||||
|
||||
local foopath=$(perl /home/scp1/bin/foopath)
|
||||
|
||||
if [ "$TERM" = "linux" ]; then
|
||||
c1=$(printf "\033[34;1m")
|
||||
c2=$(printf "\033[35m")
|
||||
c3=$(printf "\033[31m")
|
||||
c4=$(printf "\033[31;1m")
|
||||
c5=$(printf "\033[32m")
|
||||
c6=$(printf "\033[32;1m")
|
||||
c7=$(printf "\033[33m")
|
||||
c8=$(printf "\033[33;1m")
|
||||
c9=$(printf "\033[34m")
|
||||
fi
|
||||
|
||||
#local newtv=$(perl $HOME/devel/newtv.pl)
|
||||
local newtv=''
|
||||
|
||||
zstyle ':vcs_info:*' actionformats \
|
||||
'%{$c8%}(%f%s)%{$c7%}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f '
|
||||
zstyle ':vcs_info:*' formats \
|
||||
"%{$c8%}%s%{$c7%}:%{$c7%}(%{$c9%}%b%{$c7%})%f "
|
||||
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r'
|
||||
zstyle ':vcs_info:*' enable git
|
||||
|
||||
add-zsh-hook precmd prompt_jnrowe_precmd
|
||||
|
||||
prompt_jnrowe_precmd () {
|
||||
vcs_info
|
||||
|
||||
if [ "${vcs_info_msg_0_}" = "" ]; then
|
||||
#dir_status="|%F{3}%n%F{7}@%F{3}%m%F{7}:%F{9}%l%f"
|
||||
#dir_status="$c1%n%F{7}@%F{9}%m%F{7}:%F{12}%/"
|
||||
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})"
|
||||
#dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$foopath%} %{$c0%}(%{$c5%}%?%{$c0%})"
|
||||
|
||||
PROMPT='%{$fg_bold[green]%}%p%{$reset_color%}${vcs_info_msg_0_}${dir_status} ${ret_status}%{$reset_color%}
|
||||
> '
|
||||
elif [[ $(git diff --cached --name-status 2>/dev/null ) != "" ]]; then
|
||||
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})"
|
||||
PROMPT='${vcs_info_msg_0_}
|
||||
%{$fg_bold[green]%}%p%{$reset_color%}${dir_status} ${vcs_info_msg_0_}%{$reset_color%}
|
||||
> '
|
||||
|
||||
elif [[ $(git diff --name-status 2>/dev/null ) != "" ]]; then
|
||||
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})"
|
||||
|
||||
PROMPT='${vcs_info_msg_0_}
|
||||
%{$fg_bold[green]%}%p%{$reset_color%}${dir_status}%{$reset_color%}
|
||||
%{$c9%}·>%{$c0%} '
|
||||
else
|
||||
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})"
|
||||
PROMPT='${vcs_info_msg_0_}
|
||||
%{$fg_bold[green]%}%p%{$reset_color%}${dir_status} ${vcs_info_msg_0_}%{$reset_color%}
|
||||
> '
|
||||
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
#PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$reset_color%} ${vcs_info_msg_0_}${dir_status}%{$reset_color%}
|
||||
#> '
|
||||
|
||||
# vim: set ft=zsh ts=4 sw=4 et:
|
||||
|
||||
|
||||
8
themes/macovsky-ruby.zsh-theme
Normal file
8
themes/macovsky-ruby.zsh-theme
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# ZSH Theme - Preview: http://gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png
|
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
|
||||
|
||||
PROMPT='%{$fg[green]%}%~%{$reset_color%} %{$fg[red]%}‹$(~/.rvm/bin/rvm-prompt i v)› %{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b '
|
||||
RPS1="${return_code}"
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# ZSH Theme - Preview: http://gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png
|
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
|
||||
|
||||
PROMPT='%{$fg[green]%}%~%{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b '
|
||||
PROMPT='%{$fg[green]%}%~%{$reset_color%} %{$fg[red]%}‹$(~/.rvm/bin/rvm-prompt i v)› %{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b '
|
||||
RPS1="${return_code}"
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
|
||||
|
|
|
|||
6
themes/mgutz.zsh-theme
Normal file
6
themes/mgutz.zsh-theme
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
PROMPT='%{$fg_bold[magenta]%}%1~$(git_prompt_info) %{$fg_bold[magenta]%}%# %{$reset_color%}'
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[yellow]%}["
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="*]"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN="]"
|
||||
23
themes/mikeh.zsh-theme
Normal file
23
themes/mikeh.zsh-theme
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
setopt prompt_subst
|
||||
autoload colors
|
||||
colors
|
||||
|
||||
autoload -U add-zsh-hook
|
||||
autoload -Uz vcs_info
|
||||
|
||||
# check-for-changes can be really slow.
|
||||
# you should disable it, if you work with large repositories
|
||||
zstyle ':vcs_info:*:prompt:*' check-for-changes true
|
||||
|
||||
add-zsh-hook precmd mikeh_precmd
|
||||
|
||||
mikeh_precmd() {
|
||||
vcs_info
|
||||
}
|
||||
|
||||
# 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{"%a %b %d, %I:%M"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%}
|
||||
%{\e[0;34m%}%B..%B[%{\e[1;35m%}$%{\e[0;34m%}%B] <($vcs_info_msg_0_)>%{\e[0m%}%b '
|
||||
PS2=$' \e[0;34m%}%B>%{\e[0m%}%b '
|
||||
16
themes/pmcgee.zsh-theme
Normal file
16
themes/pmcgee.zsh-theme
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
if [ "$(whoami)" = "root" ]; then NCOLOR="red"; else NCOLOR="green"; fi
|
||||
|
||||
PROMPT='
|
||||
%{$fg[$NCOLOR]%}%B%n@%m%b%{$reset_color%} %{$fg[white]%}%B${PWD/#$HOME/~}%b%{$reset_color%}
|
||||
$(git_prompt_info)%(!.#.$) '
|
||||
RPROMPT='[%*]'
|
||||
|
||||
# git theming
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_no_bold[yellow]%}%B"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}*"
|
||||
|
||||
# LS colors, made with http://geoff.greer.fm/lscolors/
|
||||
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:'
|
||||
8
themes/rgm.zsh-theme
Normal file
8
themes/rgm.zsh-theme
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
PROMPT='
|
||||
%n@%m %{$fg[cyan]%}%~
|
||||
%? $(git_prompt_info)%{$fg_bold[blue]%}%% %{$reset_color%}'
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}"
|
||||
7
themes/skaro.zsh-theme
Normal file
7
themes/skaro.zsh-theme
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
PROMPT='%{$fg_bold[green]%}%h %{$fg[cyan]%}%2~ %{$fg_bold[blue]%}$(git_prompt_info) %{$reset_color%}» '
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
|
||||
|
||||
13
themes/sporty_256.zsh-theme
Normal file
13
themes/sporty_256.zsh-theme
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# zsh theme requires 256 color enabled terminal
|
||||
# i.e TERM=xterm-256color
|
||||
# Preview - http://www.flickr.com/photos/adelcampo/4556482563/sizes/o/
|
||||
# based on robbyrussell's shell but louder!
|
||||
|
||||
PROMPT='%{$fg_bold[blue]%}$(git_prompt_info) %F{208}%c%f
|
||||
%{$fg_bold[white]%}%# %{$reset_color%}'
|
||||
RPROMPT='%B%F{208}%n%f%{$fg_bold[white]%}@%F{039}%m%f%{$reset_color%}'
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%F{154}±|%f%F{124}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}%B✘%b%F{154}|%f%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%F{154}|"
|
||||
29
themes/thomasjbradley.zsh-theme
Normal file
29
themes/thomasjbradley.zsh-theme
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
function prompt_char {
|
||||
git branch >/dev/null 2>/dev/null && echo '±' && return
|
||||
hg root >/dev/null 2>/dev/null && echo '☿' && return
|
||||
echo '○'
|
||||
}
|
||||
|
||||
function virtualenv_info {
|
||||
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
|
||||
}
|
||||
|
||||
function hg_prompt_info {
|
||||
hg prompt --angle-brackets "\
|
||||
< on %{$fg[magenta]%}<branch>%{$reset_color%}>\
|
||||
< at %{$fg[yellow]%}<tags|%{$reset_color%}, %{$fg[yellow]%}>%{$reset_color%}>\
|
||||
%{$fg[green]%}<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
|
||||
}
|
||||
|
||||
PROMPT='
|
||||
%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(hg_prompt_info)$(git_prompt_info)
|
||||
$(virtualenv_info)$(prompt_char) '
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!"
|
||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||
|
||||
. ~/bin/dotfiles/zsh/aliases
|
||||
7
themes/wezm+.zsh-theme
Normal file
7
themes/wezm+.zsh-theme
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
PROMPT='%{${fg_bold[yellow]}%}%n%{$reset_color%}%{${fg[yellow]}%}@%m%{$reset_color%} $(git_prompt_info)%(?,,%{${fg_bold[white]}%}[%?]%{$reset_color%} )%{$fg[yellow]%}%#%{$reset_color%} '
|
||||
RPROMPT='%{$fg[green]%}%~%{$reset_color%}'
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[blue]%}("
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%})%{$fg[red]%}✗%{$reset_color%}"
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
|
||||
|
|
@ -24,6 +24,13 @@ echo "export PATH=$PATH" >> ~/.zshrc
|
|||
echo "Time to change your default shell to zsh!"
|
||||
chsh -s /bin/zsh
|
||||
|
||||
echo "Hooray! Oh My Zsh has been installed."
|
||||
echo ' __ __ '
|
||||
echo ' ____ / /_ ____ ___ __ __ ____ _____/ /_ '
|
||||
echo ' / __ \/ __ \ / __ `__ \/ / / / /_ / / ___/ __ \ '
|
||||
echo '/ /_/ / / / / / / / / / / /_/ / / /_(__ ) / / / '
|
||||
echo '\____/_/ /_/ /_/ /_/ /_/\__, / /___/____/_/ /_/ '
|
||||
echo ' /____/'
|
||||
|
||||
echo "\n\n ....is now installed."
|
||||
/bin/zsh
|
||||
source ~/.zshrc
|
||||
|
|
|
|||
|
|
@ -2,4 +2,5 @@ current_path=`pwd`
|
|||
echo "Upgrading Oh My Zsh"
|
||||
( cd $ZSH && git pull origin master )
|
||||
echo "Hooray! Oh My Zsh has been updated and/or is at the current version. \nAny new updates will be reflected when you start your next terminal session."
|
||||
echo "To keep up on the latest, be sure to follow Oh My Zsh on twitter: http://twitter.com/ohmyzsh"
|
||||
cd $current_path
|
||||
Loading…
Add table
Add a link
Reference in a new issue