Compare commits

..

2 Commits

Author SHA1 Message Date
Xavier Logerais
9e5fcc649e feat: Modification completion aws 2024-07-29 08:19:18 +00:00
Xavier Logerais
5d71c2aa96 feat: Ajout completion pour glab 2024-07-29 08:18:30 +00:00
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,5 @@
#!/bin/bash
if ( which aws && which aws_completer ) &> /dev/null
then
if (command -v aws && command -v aws_completer) &>/dev/null; then
complete -C aws_completer aws
fi

5
completion.d/glab Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
if (command -v glab &>/dev/null); then
source <(glab completion)
fi