- some white space clean-up, removal of e-mail addresses and removal of

comment pertaining to an ssh completion bug that was fixed a while ago
This commit is contained in:
ianmacd 2002-03-07 18:04:05 +00:00
parent 314e38b9b7
commit b22b0484e0

View File

@ -1,6 +1,6 @@
# bash_completion - some programmable completion functions for bash 2.05a # bash_completion - some programmable completion functions for bash 2.05a
# #
# $Id: bash_completion,v 1.186 2002/03/07 19:00:48 ianmacd Exp $ # $Id: bash_completion,v 1.187 2002/03/07 19:04:05 ianmacd Exp $
# #
# Copyright (C) Ian Macdonald <ian@caliban.org> # Copyright (C) Ian Macdonald <ian@caliban.org>
# #
@ -1346,8 +1346,7 @@ _known_hosts()
complete -F _known_hosts traceroute ping fping telnet host nslookup rsh \ complete -F _known_hosts traceroute ping fping telnet host nslookup rsh \
rlogin ftp rlogin ftp
# ssh(1) completion. Should be able to improve this with user@host notation, # ssh(1) completion
# but the '@' seems to trigger some kind of bug in bash's completion.
# #
have ssh && have ssh &&
_ssh() _ssh()
@ -1757,7 +1756,7 @@ _root_command()
} }
complete -F _root_command -o filenames sudo complete -F _root_command -o filenames sudo
# Perforce completion by Frank Cusack (frank@google.com) # Perforce completion
# #
have p4 && have p4 &&
_p4() _p4()
@ -2109,7 +2108,7 @@ for i in a2ps autoconf automake bc gprof ld nm objcopy objdump readelf strip \
done done
unset i unset i
# gcc(1) completion, originally by Phil Edwards <phil@jaj.com> # gcc(1) completion
# #
# The only unusual feature is that we don't parse "gcc --help -v" output # The only unusual feature is that we don't parse "gcc --help -v" output
# directly, because that would include the options of all the other backend # directly, because that would include the options of all the other backend