Skip to content

Commit ae6757f

Browse files
committed
Added completion for sql:open
1 parent f5464f3 commit ae6757f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

completion/bash/itkdev-docker-compose-completion.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ _idc_completions()
99
fi
1010

1111
# Keep the suggestions in a local variable
12-
local suggestions=($(compgen -W "url open drush template:install traefik:start traefik:stop traefik:open traefik:url mailhog:open mailhog:url sql:connect sql:port xdebug hosts:insert sync sync:db sync:files images:pull composer" -- "${COMP_WORDS[1]}"))
12+
local suggestions=($(compgen -W "url open drush template:install traefik:start traefik:stop traefik:open traefik:url mailhog:open mailhog:url sql:connect sql:port sql:open xdebug hosts:insert sync sync:db sync:files images:pull composer" -- "${COMP_WORDS[1]}"))
1313

1414
COMPREPLY=("${suggestions[@]}")
1515

completion/zsh/_itkdev-docker-compose

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ _itkdev-docker-compose() {
3535
'sync\:files[Sync files base.]' \
3636
'sql\:connect[Print mysql command for connecting to database.]' \
3737
'sql\:port[Display the exposed MariaDB SQL server port.]' \
38+
'sql\:open[Open default SQL UI.]' \
3839
'template\:install[Install template]' \
3940
'traefik\:start[Start reverse proxy]' \
4041
'traefik\:stop[Stop reverse proxy]' \

0 commit comments

Comments
 (0)