about summary refs log tree commit diff
path: root/Completion/Unix/Command/_rubber
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Unix/Command/_rubber')
-rw-r--r--Completion/Unix/Command/_rubber6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_rubber b/Completion/Unix/Command/_rubber
index 91c220b41..611425636 100644
--- a/Completion/Unix/Command/_rubber
+++ b/Completion/Unix/Command/_rubber
@@ -5,12 +5,12 @@ local _rubber_version _rubber_path _rubber_modules _rubber_args
 eval $(rubber --version | sed 's/^.* \([^ ]*\): */_rubber_\1=/')
 if [[ ${_rubber_version#0} != $_rubber_version ]]; then
   _rubber_modules=(
-    $(ls $_rubber_path/rubber/modules | sed -n 's/^\([^_].*\)\.py$/\1/p')
+    $_rubber_path/rubber/modules/[^_]*.py(N:r:t)
   )
 else
   _rubber_modules=(
-    $(ls $_rubber_path/modules | sed -n 's/.rub$//p')
-    $(ls $_rubber_path/rubber/rules/latex | sed -n 's/^\([^_].*\)\.py$/\1/p')
+    $_rubber_path/modules/*.rub(N:r:t)
+    $_rubber_path/rubber/rules/latex/[^_]*.py(N:r:t)
   )
 fi