added a couple new color variations on my new prompt theme. also switched to proper 'unset' syntax in zshmarks, instead of destroying variable by setting to null string

This commit is contained in:
Jocelyn Mallon 2011-10-05 23:07:06 -07:00
commit ea1cf305fe
4 changed files with 226 additions and 17 deletions

View file

@ -40,16 +40,11 @@ function go() {
else
dir="${bookmark%%|*}"
cd "${dir}"
dir=""
unset dir
fi
}
# Show a list of the bookmarks
function showmarks() {
cat ~/.bookmarks | awk '{ printf "%-40s%-40s%s\n",$1,$2,$3}' FS=\|
}
# manually edit bookmarks
function editmarks() {
$EDITOR $bookmarks_file
}