1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-25 15:20:08 +00:00

Filter out missing links with jump autocomplete

This commit is contained in:
Justin Aiken 2013-09-05 09:39:22 -06:00
parent 73c22c146c
commit 128cd3f566

View file

@ -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