diff options
author | Robby Russell <robby@planetargon.com> | 2013-09-06 14:35:00 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-09-06 14:35:00 -0700 |
commit | d7b594e5cdf828308474ca22e7ccd336dd0abc5e (patch) | |
tree | 9491c4e8afd60233fb63b048c0871c61eb593dc8 | |
parent | 434f3bc05c5245d7a27ab0bb1ede5b78acc370a4 (diff) | |
parent | d3e005d6b42995021ad6f1009734a55cb65be6ce (diff) | |
download | zsh-d7b594e5cdf828308474ca22e7ccd336dd0abc5e.tar.gz zsh-d7b594e5cdf828308474ca22e7ccd336dd0abc5e.tar.bz2 zsh-d7b594e5cdf828308474ca22e7ccd336dd0abc5e.zip |
Merge pull request #2045 from jeroenjanssens/master
Add jump plugin, which allows you to easily jump around the file system
-rw-r--r-- | plugins/jump/jump.plugin.zsh | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/plugins/jump/jump.plugin.zsh b/plugins/jump/jump.plugin.zsh new file mode 100644 index 000000000..a3c5cf8c3 --- /dev/null +++ b/plugins/jump/jump.plugin.zsh @@ -0,0 +1,52 @@ +# 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 + +jump() { + cd -P "$MARKPATH/$1" 2>/dev/null || echo "No such mark: $1" +} + +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 +} + +unmark() { + rm -i "$MARKPATH/$1" +} + +autoload colors +marks() { + 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 +} + +_completemarks() { + reply=($(ls $MARKPATH/**/*(-) | grep : | sed -E 's/(.*)\/([_\da-zA-Z\-]*):$/\2/g')) +} +compctl -K _completemarks jump +compctl -K _completemarks unmark + +_mark_expansion() { + setopt extendedglob + autoload -U modify-current-argument + modify-current-argument '$(readlink "$MARKPATH/$ARG")' +} +zle -N _mark_expansion +bindkey "^g" _mark_expansion |