Commit b39dbec7 authored by Alexandros Giouzenis's avatar Alexandros Giouzenis
Browse files

Fix tmuxinator completion for symlinked dirs

Tmuxinator start command can be ommited
Fix #2812
parent 550ccca9
...@@ -8,6 +8,8 @@ _arguments -C \ ...@@ -8,6 +8,8 @@ _arguments -C \
'1: :->cmds' \ '1: :->cmds' \
'2:: :->args' && ret=0 '2:: :->args' && ret=0
_configs=(${$(echo ~/.tmuxinator/*.yml):r:t})
case $state in case $state in
cmds) cmds)
_values "tmuxinator command" \ _values "tmuxinator command" \
...@@ -21,13 +23,13 @@ case $state in ...@@ -21,13 +23,13 @@ case $state in
"list[list all existing projects]" \ "list[list all existing projects]" \
"doctor[look for problems in your configuration]" \ "doctor[look for problems in your configuration]" \
"help[shows this help document]" \ "help[shows this help document]" \
"version[shows tmuxinator version number]" "version[shows tmuxinator version number]" \
$_configs
ret=0 ret=0
;; ;;
args) args)
case $line[1] in case $line[1] in
start|open|copy|delete|debug) start|open|copy|delete|debug)
_configs=(`find ~/.tmuxinator -name \*.yml | cut -d/ -f5 | sed s:.yml::g`)
[[ -n "$_configs" ]] && _values 'configs' $_configs [[ -n "$_configs" ]] && _values 'configs' $_configs
ret=0 ret=0
;; ;;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment