From 349f52a1a5440f26cf6c88c5f9a3f82954df1699 Mon Sep 17 00:00:00 2001 From: axel Date: Sat, 1 Apr 2006 02:55:54 +1000 Subject: [PATCH] Telnet completions from Sean Higgins darcs-hash:20060331165554-ac50b-5b0300d89ac2b2fbc6bc4bfcf228572fdce2e284.gz --- share/completions/telnet.fish | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 share/completions/telnet.fish diff --git a/share/completions/telnet.fish b/share/completions/telnet.fish new file mode 100644 index 000000000..b850151e9 --- /dev/null +++ b/share/completions/telnet.fish @@ -0,0 +1,25 @@ +# +# Load common telnet options +# +# Written by: Sean C. Higgins +# + +complete -x -c telnet -d Hostname -a "(__fish_print_hostnames)" + +complete -c telnet -s 8 -d (_ "Specifies an 8-bit data path.") +complete -c telnet -s 7 -d (_ "Do not try to negotiate TELNET BINARY option.") +complete -c telnet -s E -d (_ "Stops any character from being recognized as an escape character.") +complete -c telnet -s F -d (_ "Use local Kerberos authentication, if possible.") +complete -c telnet -s K -d (_ "Specifies no automatic login to remote system.") +complete -c telnet -s L -d (_ "Specifies an 8-bit data path.") +complete -c telnet -s a -d (_ "Attempt automatic login.") +complete -c telnet -s c -d (_ "Disables reading user's .telnetrc") +complete -c telnet -s d -d (_ "Sets debug mode.") +complete -c telnet -s S -x -d (_ "Sets IP TOS.") +complete -c telnet -s X -x -d (_ "Disables atype type of authentication.") +complete -c telnet -s l -x -a "(__fish_complete_users)" -d (_ "User login.") +complete -c telnet -s n -x -d (_ "Log to tracefile.") +complete -c telnet -s x -d (_ "Turn on encryption.") +complete -c telnet -s r -d (_ "User interface similar to rlogin.") +complete -c telnet -s k -x -d (_ "Use Kerberos realm for authentication.") +