diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/User/_make | 2 | ||||
-rw-r--r-- | Completion/User/_ssh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Completion/User/_make b/Completion/User/_make index 09e4e4f89..bfdf7b91e 100644 --- a/Completion/User/_make +++ b/Completion/User/_make @@ -39,7 +39,7 @@ else $(awk '/^[a-zA-Z0-9][^\/\t=]+:/ {print $1} /^\.include *<bsd\.port\.(subdir\.|pre\.)?mk>/ || /^\.include *".*mk\/bsd\.pkg\.(subdir\.)?mk"/ { print "fetch fetch-list extract patch configure build install reinstall deinstall package describe checkpatch checksum makesum" }' \ - FS=: $file) + FS=: $file </dev/null) ) fi _wanted targets expl 'make target' compadd "$tmp[@]" && return 0 diff --git a/Completion/User/_ssh b/Completion/User/_ssh index 986dec0c0..eeb0e08dc 100644 --- a/Completion/User/_ssh +++ b/Completion/User/_ssh @@ -3,7 +3,7 @@ _remote_files () { # This is extremely simple-minded; could parse "ls -F" output to do # colorings and LIST_TYPES and so on, but I'm just not that ambitious. - compadd $(ssh ${words[CURRENT]%:*} echo ${words[CURRENT]#*:}\*) + compadd $(ssh -a -x ${words[CURRENT]%:*} echo ${words[CURRENT]#*:}\*) } _ssh () { |