Commit 128cd3f5 authored by Justin Aiken's avatar Justin Aiken
Browse files

Filter out missing links with jump autocomplete

parent 73c22c14
...@@ -7,13 +7,13 @@ ...@@ -7,13 +7,13 @@
# 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 {
...@@ -21,7 +21,7 @@ function marks { ...@@ -21,7 +21,7 @@ function marks {
} }
function _completemarks { function _completemarks {
reply=($(ls $MARKPATH)) reply=($(ls $MARKPATH/**/*(-) | grep : | sed -E 's/(.*)\/([a-z]*):$/\2/g'))
} }
compctl -K _completemarks jump compctl -K _completemarks jump
......
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