X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=.profile.d%2Fcompletion.bashrc;h=ae18697cbf6fd7d40931ecb121d60fd122cc028c;hb=aca9a1b0a3f372cc385ff2dc7c4e0c4e392e89f7;hp=fa86e5ea932e345e505ce03043c2a4b9e78c7438;hpb=9e07d4e358e5b0c7e9e9a949fab7293e770af6c5;p=profile.git diff --git a/.profile.d/completion.bashrc b/.profile.d/completion.bashrc index fa86e5e..ae18697 100644 --- a/.profile.d/completion.bashrc +++ b/.profile.d/completion.bashrc @@ -103,6 +103,15 @@ function _rmmod() { return 0 } +# Find tags with GNU GLOBAL. +function _global() { + COMPREPLY=() + cur=${COMP_WORDS[COMP_CWORD]} + + COMPREPLY=($(global -c "$cur")) + return 0 +} + complete -F _ssh rollout complete -F _ssh ssh complete -F _ssh sshterm @@ -120,6 +129,7 @@ complete -F _known_hosts kill_known_host complete -F _known_hosts knh complete -F _modprobe modprobe complete -F _rmmod rmmod +complete -F _global global unset COMPLETION_DIR_PING unset COMPLETION_DIR_RDP