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
Oh My Zsh
Commits
9af7f862
Commit
9af7f862
authored
Aug 01, 2012
by
Alexis Letessier
Browse files
Correct variable used for global ssh known host completion
parent
d05b2010
Changes
1
Show whitespace changes
Inline
Side-by-side
lib/completion.zsh
View file @
9af7f862
...
@@ -32,7 +32,7 @@ zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-dir
...
@@ -32,7 +32,7 @@ zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-dir
cdpath
=(
.
)
cdpath
=(
.
)
# use /etc/hosts and known_hosts for hostname completion
# 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
/etc/ssh/ssh_known_hosts
]
&&
_global_ssh_hosts
=(
${${${${
(f)
"
$(
</etc/ssh/ssh_known_hosts
)
"
}
:#[
\|]*
}
%%\ *
}
%%,*
}
)
||
_global
_ssh_hosts
=()
[
-r
~/.ssh/known_hosts
]
&&
_ssh_hosts
=(
${${${${
(f)
"
$(
<
$HOME
/.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
=()
[
-r
/etc/hosts
]
&&
:
${
(A)_etc_hosts
:
=
${
(s
:
:
)
${
(ps
:
\t
:
)
${${
(f)~~
"
$(
</etc/hosts
)
"
}
%%\#*
}
##[
:blank:]#[^[:blank:]]#
}}}
||
_etc_hosts
=()
hosts
=(
hosts
=(
...
...
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