mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
Conflicts: .gitignore plugins/git/git.plugin.zsh plugins/jump/jump.plugin.zsh templates/zshrc.zsh-template
89 lines
1.9 KiB
Bash
89 lines
1.9 KiB
Bash
# Easily jump around the file system by manually adding marks
|
|
# marks are stored as symbolic links in the directory $MARKPATH (default $HOME/.marks)
|
|
#
|
|
# jump FOO: jump to a mark named FOO
|
|
# mark FOO: create a mark named FOO
|
|
# unmark FOO: delete a mark
|
|
# marks: lists all marks
|
|
#
|
|
|
|
export MARKPATH=$HOME/.marks
|
|
|
|
function jump()
|
|
{
|
|
if [[ -z $1 ]]; then
|
|
echo "Error: no mark name given"
|
|
echo "available marks:"
|
|
marks
|
|
return
|
|
fi
|
|
if [[ $1 == "--help" ]]; then
|
|
echo "Jump plugin:"
|
|
echo " 'jump FOO': jump to a mark named FOO"
|
|
echo " 'mark FOO': create a mark named FOO"
|
|
echo " 'unmark FOO': delete a mark"
|
|
echo " 'marks': lists all marks"
|
|
return
|
|
fi
|
|
|
|
cd -P "$MARKPATH/$1" 2>/dev/null || echo "No such mark: $1"
|
|
}
|
|
|
|
function mark()
|
|
{
|
|
if (( $# == 0 )); then
|
|
MARK=$(basename "$(pwd)")
|
|
else
|
|
MARK="$1"
|
|
fi
|
|
if read -q \?"Mark $(pwd) as ${MARK}? (y/n) "; then
|
|
mkdir -p "$MARKPATH"; ln -s "$(pwd)" "$MARKPATH/$MARK"
|
|
fi
|
|
}
|
|
|
|
function unmark()
|
|
{
|
|
rm -i "$MARKPATH/$1"
|
|
}
|
|
|
|
autoload colors
|
|
function marks()
|
|
{
|
|
if [[ -d $MARKPATH ]]; then
|
|
for link in $MARKPATH/*(@); do
|
|
local markname="$fg[cyan]${link:t}$reset_color"
|
|
local markpath="$fg[blue]$(readlink $link)$reset_color"
|
|
printf "%s\t" $markname
|
|
printf "-> %s \t\n" $markpath
|
|
done
|
|
else
|
|
echo "No mark found."
|
|
fi
|
|
}
|
|
|
|
function _completemarks()
|
|
{
|
|
if [[ $(ls "${MARKPATH}" | wc -l) -gt 1 ]]; then
|
|
reply=($(ls $MARKPATH/**/*(-) | grep : | sed -E 's/(.*)\/([_\da-zA-Z\-]*):$/\2/g'))
|
|
else
|
|
if readlink -e "${MARKPATH}"/* &>/dev/null; then
|
|
reply=($(ls "${MARKPATH}"))
|
|
fi
|
|
fi
|
|
}
|
|
|
|
compctl -K _completemarks jump
|
|
compctl -K _completemarks unmark
|
|
|
|
function _mark_expansion()
|
|
{
|
|
setopt extendedglob
|
|
autoload -U modify-current-argument
|
|
modify-current-argument '$(readlink "$MARKPATH/$ARG")'
|
|
}
|
|
|
|
zle -N _mark_expansion
|
|
bindkey "^g" _mark_expansion
|
|
|
|
alias j='jump'
|
|
compdef _jump j=jump
|