1
0

rework personal completions

also support:
- fd/fdfind
- hyperfine
This commit is contained in:
2022-05-18 11:28:39 +03:00
parent 2622b6e7e8
commit 23275ec9fc
7 changed files with 19 additions and 17 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/zsh
__z_comp__kubectl() { command kubectl completion zsh ; }
__z_comp__podman() { command podman completion zsh ; }
for i ( kubectl podman ) ; do
__z_comp_external $i "__z_comp__$i"
done
unset -fm '__z_comp__*'