mirror of
https://git.sr.ht/~danbarber/dotfiles
synced 2025-03-04 08:59:18 +00:00
8 lines
112 B
Plaintext
8 lines
112 B
Plaintext
#compdef ag
|
|
|
|
if (( CURRENT == 2 )); then
|
|
compadd $(cut -f 1 tmp/tags .git/tags 2>/dev/null)
|
|
else;
|
|
_files
|
|
fi
|