HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/zsh/functions/MIME/zsh-mime-contexts
# Helper for zsh-mime-handler.
#
# Pass in a zstyle option, a suffix, which might include multiple parts
# (e.g. pdf.gz), plus remaining zstyle arguments plus arguments to zstyle.
# Try to match the style starting with the longest possible suffix.

local context suffix option

option=$1
shift
suffix=$1
shift

while true; do
  context=":mime:.${suffix}:"
  zstyle $option $context "$@" && return 0
  if [[ $suffix = *.* ]]; then
    suffix=${suffix#*.}
  else
    break
  fi
done

return 1