diff options
Diffstat (limited to 'Completion/User')
-rw-r--r-- | Completion/User/_find | 4 | ||||
-rw-r--r-- | Completion/User/_make | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Completion/User/_find b/Completion/User/_find index 116ee6f6b..dd00b0ed1 100644 --- a/Completion/User/_find +++ b/Completion/User/_find @@ -2,7 +2,7 @@ local prev="$words[CURRENT-1]" -if compset -N '-(ok|exec)' '\;' then +if compset -N '-(ok|exec)' '\;'; then _normal elif compset -P 1 -; then compgen -s 'daystart {max,min,}depth follow noleaf version xdev \ @@ -13,7 +13,7 @@ elif [[ CURRENT -eq 2 ]]; then local ret=1 compgen -g '. ..' && ret=0 - _files -g '(-/)' && ret=0 + _files -g '*(-/)' && ret=0 return ret elif [[ "$prev" = -((a|c|)newer|fprint(|0|f)) ]]; then diff --git a/Completion/User/_make b/Completion/User/_make index f950ad754..acaa56b8e 100644 --- a/Completion/User/_make +++ b/Completion/User/_make @@ -1,3 +1,3 @@ #compdef make gmake pmake -compgen -s "\$(awk '/^[a-zA-Z0-9][^\/ ]+:/ {print \$1}' FS=: [mM]akefile)" +compgen -s "\$(awk '/^[a-zA-Z0-9][^\/ ]+:/ {print \$1}' FS=: [mM]akefile /dev/null)" |