Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
c4434d2d
Commit
c4434d2d
authored
Nov 04, 2011
by
Sébastien M-B
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update completion for SSH
Add all hosts found in ~/.ssh/config. Tip found on:
http://www.nerux.org/wiki/OpenSSH#coupler_avec_zsh_completion
parent
914e1b52
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
completion.zsh
lib/completion.zsh
+3
-0
No files found.
lib/completion.zsh
View file @
c4434d2d
...
@@ -33,14 +33,17 @@ cdpath=(.)
...
@@ -33,14 +33,17 @@ cdpath=(.)
# use /etc/hosts and known_hosts for hostname completion
# use /etc/hosts and known_hosts for hostname completion
[
-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
~/.ssh/config
]
&&
_ssh_config
=(
$(
cat
~/.ssh/config |
sed
-ne
's/Host[=\t ]//p'
)
)
||
_ssh_config
=()
[
-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
=(
"
$_ssh_config
[@]"
"
$_ssh_hosts
[@]"
"
$_ssh_hosts
[@]"
"
$_etc_hosts
[@]"
"
$_etc_hosts
[@]"
`
hostname
`
`
hostname
`
localhost
localhost
)
)
zstyle
':completion:*:hosts'
hosts
$hosts
zstyle
':completion:*:hosts'
hosts
$hosts
zstyle
':completion:*'
users
off
# Use caching so that commands like apt and dpkg complete are useable
# Use caching so that commands like apt and dpkg complete are useable
zstyle
':completion::complete:*'
use-cache 1
zstyle
':completion::complete:*'
use-cache 1
...
...
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