From c5a3b170d431e10a4f82e91ce9e6347163393695 Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Tue, 13 Sep 2016 17:43:38 +0200 Subject: 39299: better Freebsd support in _external_pwds using procstat --- Completion/Base/Completer/_external_pwds | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Completion/Base') diff --git a/Completion/Base/Completer/_external_pwds b/Completion/Base/Completer/_external_pwds index 79e3ba0eb..a9dc859f1 100644 --- a/Completion/Base/Completer/_external_pwds +++ b/Completion/Base/Completer/_external_pwds @@ -22,9 +22,13 @@ case $OSTYPE in ) ;; linux*) - dirs=( /proc/${^$(pidof zsh):#$$}/cwd(N:P) ) + dirs=( /proc/${^$(pidof -- -zsh zsh):#$$}/cwd(N:P) ) dirs=( $^dirs(N^@) ) ;; + freebsd*) + dirs=( $(pgrep -U $UID -x zsh) ) + dirs=( $(procstat -h -f $dirs|awk '{if ($3 == "cwd") print $NF}') ) + ;; *) if (( $+commands[lsof] )); then dirs=( ${${${(M)${(f)"$(lsof -a -u $EUID -c zsh -p \^$$ -d cwd -F n -w -- cgit 1.4.1