mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-14 09:50:08 +00:00
Only using the contents of .ssh/known_hosts when the file exists for ssh/scp auto-completion. Closes issue #20
This commit is contained in:
parent
eb05b61483
commit
fc3a3c72b1
1 changed files with 7 additions and 2 deletions
|
@ -22,7 +22,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
zstyle ':completion:*' list-colors ''
|
zstyle ':completion:*' list-colors ''
|
||||||
zstyle ':completion:*' hosts $( sed 's/[, ].*$//' $HOME/.ssh/known_hosts )
|
|
||||||
|
|
||||||
unsetopt MENU_COMPLETE
|
unsetopt MENU_COMPLETE
|
||||||
#setopt AUTO_MENU
|
#setopt AUTO_MENU
|
||||||
|
@ -35,7 +35,12 @@ zstyle ':completion:*:*:*:*:*' menu yes select
|
||||||
|
|
||||||
zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#) ([0-9a-z-]#)*=01;34=0=01'
|
zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#) ([0-9a-z-]#)*=01;34=0=01'
|
||||||
zstyle ':completion:*:*:*:*:processes' command "ps -u `whoami` -o pid,user,comm -w -w"
|
zstyle ':completion:*:*:*:*:processes' command "ps -u `whoami` -o pid,user,comm -w -w"
|
||||||
zstyle ':completion:*:*:(ssh|scp):*:*' hosts `sed 's/^\([^ ,]*\).*$/\1/' ~/.ssh/known_hosts`
|
|
||||||
|
# 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
|
||||||
|
|
||||||
# Complete on history
|
# Complete on history
|
||||||
# zstyle ':completion:*:history-words' stop yes
|
# zstyle ':completion:*:history-words' stop yes
|
||||||
|
|
Loading…
Reference in a new issue