Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
d8521693
Commit
d8521693
authored
Dec 22, 2011
by
Kyle Smith
Browse files
Added support for entries in /etc/ssh/ssh_known_hosts.
parent
54f17588
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/completion.zsh
View file @
d8521693
...
...
@@ -32,9 +32,11 @@ zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-dir
cdpath
=(
.
)
# use /etc/hosts and known_hosts for hostname completion
[
-r
/etc/ssh/ssh_known_hosts
]
&&
_global_ssh_hosts
=(
${${${${
(f)
"
$(
</etc/ssh/ssh_known_hosts
)
"
}
:#[
\|]*
}
%%\ *
}
%%,*
}
)
||
_ssh_hosts
=()
[
-r
~/.ssh/known_hosts
]
&&
_ssh_hosts
=(
${${${${
(f)
"
$(
<
$HOME
/.ssh/known_hosts
)
"
}
:#[
\|]*
}
%%\ *
}
%%,*
}
)
||
_ssh_hosts
=()
[
-r
/etc/hosts
]
&&
:
${
(A)_etc_hosts
:
=
${
(s
:
:
)
${
(ps
:
\t
:
)
${${
(f)~~
"
$(
</etc/hosts
)
"
}
%%\#*
}
##[
:blank:]#[^[:blank:]]#
}}}
||
_etc_hosts
=()
hosts
=(
"
$_global_ssh_hosts
[@]"
"
$_ssh_hosts
[@]"
"
$_etc_hosts
[@]"
`
hostname
`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment