Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
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
c517f585
Commit
c517f585
authored
14 years ago
by
Robby Russell
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'completions' of
https://github.com/gwjo/oh-my-zsh
into gwjo-completions
parents
e2cd26c7
9465ba0d
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
5 deletions
+27
-5
completion.zsh
lib/completion.zsh
+27
-5
No files found.
lib/completion.zsh
View file @
c517f585
...
...
@@ -34,9 +34,31 @@ zstyle ':completion:*:*:*:*:processes' command "ps -u `whoami` -o pid,user,comm
zstyle
':completion:*:cd:*'
tag-order local-directories directory-stack path-directories
cdpath
=(
.
)
# use /etc/hosts and known_hosts for hostname completion
[
-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
=(
"
$_ssh_hosts
[@]"
"
$_etc_hosts
[@]"
`
hostname
`
localhost
)
zstyle
':completion:*:hosts'
hosts
$hosts
# Use caching so that commands like apt and dpkg complete are useable
zstyle
':completion::complete:*'
use-cache 1
zstyle
':completion::complete:*'
cache-path ~/.oh-my-zsh/cache/
# Don't complete uninteresting users
zstyle
':completion:*:*:*:users'
ignored-patterns
\
adm amanda apache avahi beaglidx bin cacti canna clamav daemon
\
dbus distcache dovecot fax ftp games gdm gkrellmd gopher
\
hacluster haldaemon halt hsqldb ident junkbust ldap lp mail
\
mailman mailnull mldonkey mysql nagios
\
named netdump news nfsnobody nobody nscd ntp nut nx openvpn
\
operator pcap postfix postgres privoxy pulse pvm quagga radvd
\
rpc rpcuser rpm shutdown squid sshd
sync
uucp vcsa xfs
# ... unless we really want to.
zstyle
'*'
single-ignored show
# Load known hosts file for auto-completion with ssh and scp commands
if
[
-f
~/.ssh/known_hosts
]
;
then
zstyle
':completion:*'
hosts
$(
sed
's/[, ].*$//'
$HOME
/.ssh/known_hosts
)
zstyle
':completion:*:*:(ssh|scp):*:*'
hosts
`
sed
's/^\([^ ,]*\).*$/\1/'
~/.ssh/known_hosts
`
fi
This diff is collapsed.
Click to expand it.
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