12 lines
354 B
Text
12 lines
354 B
Text
|
|
# Bookmarks completion using jump plugin
|
||
|
|
compctl -K _completemarks j
|
||
|
|
|
||
|
|
# Path completion on catwich
|
||
|
|
compdef _path_commands catwhich
|
||
|
|
|
||
|
|
# Hostname completion on various ssh commands
|
||
|
|
function _myssh() {compadd $(ls $INFRA/host); compadd $(ls $ROBESPIERRE/ansible/inventory | sed 's/\.yml$//')}
|
||
|
|
compdef _myssh r
|
||
|
|
compdef _myssh ra
|
||
|
|
compdef _myssh tramp
|