From 72df897c2ad0e021e6f2aa11a72007dc492a1777 Mon Sep 17 00:00:00 2001 From: Hoopes Date: Fri, 16 May 2014 13:05:46 +0000 Subject: [PATCH] Added a "follow symlink" flag to the tmuxinator tab-completion find command --- plugins/tmuxinator/_tmuxinator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tmuxinator/_tmuxinator b/plugins/tmuxinator/_tmuxinator index cd227b7df..76f184650 100644 --- a/plugins/tmuxinator/_tmuxinator +++ b/plugins/tmuxinator/_tmuxinator @@ -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 ;;