1
0

Compare commits

..

No commits in common. "98deefe0398b5e5df4a8fd6ae850a3e1894662db" and "20aafe29e851f10b64a3c4e1803c150af3bbcbc2" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

@ -65,7 +65,6 @@
!/.config/zsh/local.zsh.example
!/.config/zsh/local/.keep
!/.config/zsh/local/completion/.keep
!/.config/zsh/local/env.zsh.example
!/.config/zsh/opt.zsh
!/.config/zsh/opt/chase.zsh
!/.config/zsh/opt/completion.zsh

View File

@ -9,8 +9,6 @@ z-ssh-agent() {
break
done
[ -z "${SSH_AGENT_PID}" ] || kill "${SSH_AGENT_PID}"
unset SSH_AGENT_PID
(( ${+commands[ssh-agent]} )) || return 127
@ -26,6 +24,6 @@ z-ssh-agent() {
fi
{
eval "$(ssh-agent -s -a "${SSH_AUTH_SOCK}")"
eval "$(ssh-agent -s -k -a "${SSH_AUTH_SOCK}")"
} >/dev/null
}