Commit 4517db6a authored by Jeroen Janssens's avatar Jeroen Janssens
Browse files

Add _completemarks function as suggested by pielgrzym in...

Add _completemarks function as suggested by pielgrzym in https://github.com/robbyrussell/oh-my-zsh/pull/2045#issuecomment-22826540
parent 9cd1afb8
...@@ -7,15 +7,19 @@ ...@@ -7,15 +7,19 @@
# marks: lists all marks # marks: lists all marks
# #
export MARKPATH=$HOME/.marks export MARKPATH=$HOME/.marks
function jump { function jump {
cd -P "$MARKPATH/$1" 2>/dev/null || echo "No such mark: $1" cd -P "$MARKPATH/$1" 2>/dev/null || echo "No such mark: $1"
} }
function mark { function mark {
mkdir -p "$MARKPATH"; ln -s "$(pwd)" $MARKPATH/$1 mkdir -p "$MARKPATH"; ln -s "$(pwd)" $MARKPATH/$1
} }
function unmark { function unmark {
rm -i "$MARKPATH/$1" rm -i "$MARKPATH/$1"
} }
function marks { function marks {
ls -l "$MARKPATH" | sed 's/ / /g' | cut -d' ' -f9- | sed 's/ -/\t-/g' && echo ls -l "$MARKPATH" | sed 's/ / /g' | cut -d' ' -f9- | sed 's/ -/\t-/g' && echo
} }
...@@ -23,6 +27,13 @@ function marks { ...@@ -23,6 +27,13 @@ function marks {
function _completemarks { function _completemarks {
reply=($(ls $MARKPATH/**/*(-) | grep : | sed -E 's/(.*)\/([_\da-zA-Z\-]*):$/\2/g')) reply=($(ls $MARKPATH/**/*(-) | grep : | sed -E 's/(.*)\/([_\da-zA-Z\-]*):$/\2/g'))
} }
compctl -K _completemarks jump compctl -K _completemarks jump
compctl -K _completemarks unmark 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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment