some addet plugins

This commit is contained in:
pika 2025-01-05 21:32:41 +01:00
parent cb53b11b5d
commit 36c204690d
3 changed files with 214 additions and 11 deletions

12
.bash/plugins/ssh Normal file
View file

@ -0,0 +1,12 @@
_ssh()
{
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts=$(grep '^Host' ~/.ssh/config ~/.ssh/config.d/* 2>/dev/null | grep -v '[?*]' | cut -d ' ' -f 2-)
COMPREPLY=( $(compgen -W "$opts" -- ${cur}) )
return 0
}
complete -F _ssh ssh