mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 15:30:40 +01:00
Filter out missing links with jump autocomplete
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user