1
0
Fork 0
zsh/hybris.completions

16 lines
486 B
Text
Raw Normal View History

2020-04-29 12:03:50 +02:00
# Some completions
compctl -K _completemarks j
compdef _path_commands catwhich
2021-06-08 11:21:44 +02:00
_complete_tramp() {reply=($(ls $INFRA/host && grep "^ [^ ]" ~/dev/robespierre/infra/hosts/all.yml | sed 's/^ *\(.*\):$/\1/'))}
compctl -K _complete_tramp tramp
function _myssh(){
# Add bearstech hosts
compadd $(ls $INFRA/host)
# Add own hosts
# compadd $(cat ~/dev/robespierre/infra/hosts/all.yml | grep "^ [^ ]" | sed 's/ *\(.*\):/\1/')
}
compdef _myssh r
2022-10-15 18:03:02 +02:00
compdef _myssh ra