mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
feat(term_tab): add support for macOS (#11391)
This commit is contained in:
parent
8d23fbd696
commit
33aadeced0
1 changed files with 1 additions and 0 deletions
|
@ -28,6 +28,7 @@ function _term_list(){
|
||||||
case $OSTYPE in
|
case $OSTYPE in
|
||||||
solaris*) dirs=( ${(M)${${(f)"$(pgrep -U $UID -x zsh|xargs pwdx)"}:#$$:*}%%/*} ) ;;
|
solaris*) dirs=( ${(M)${${(f)"$(pgrep -U $UID -x zsh|xargs pwdx)"}:#$$:*}%%/*} ) ;;
|
||||||
linux*) dirs=( /proc/${^$(pidof zsh):#$$}/cwd(N:A) ) ;;
|
linux*) dirs=( /proc/${^$(pidof zsh):#$$}/cwd(N:A) ) ;;
|
||||||
|
darwin*) dirs=( $( lsof -d cwd -c zsh -a -w -Fn | sed -n 's/^n//p' ) ) ;;
|
||||||
esac
|
esac
|
||||||
dirs=( ${(D)dirs} )
|
dirs=( ${(D)dirs} )
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue