zsh-navigation-tools: update to 5937e57e

Fixes #8476
This commit is contained in:
Marc Cornellà
2020-05-16 16:55:29 +02:00
parent fd786291ba
commit 587b554580
7 changed files with 352 additions and 107 deletions

View File

@@ -42,8 +42,8 @@ NLIST_NONSELECTABLE_ELEMENTS=( 1 )
type ps 2>/dev/null 1>&2 || { echo >&2 "Error: \`ps' not found"; return 1 }
case "$OSTYPE" in
cygwin*) list=( `command ps -Wa` ) ;;
case "$(uname)" in
CYGWIN*) list=( `command ps -Wa` ) ;;
*) list=( `command ps -o pid,uid,command -A` ) ;;
esac