Added a "follow symlink" flag to the tmuxinator tab-completion find

command
This commit is contained in:
Hoopes 2014-05-16 13:05:46 +00:00
commit 72df897c2a

View file

@ -25,7 +25,7 @@ case $state in
args)
case $line[1] in
start|open|copy|delete)
_configs=(`find ~/.tmuxinator -name \*.yml | cut -d/ -f5 | sed s:.yml::g`)
_configs=(`find -L ~/.tmuxinator -name \*.yml | cut -d/ -f5 | sed s:.yml::g`)
_values 'configs' $_configs
ret=0
;;