#compdef sf

setopt localoptions noshwordsplit noksharrays
local -a args
args=(
    '(-w --wrap)'{-w,--wrap}"["'Trun line wrapping on'"]"
    '(--help)--help[Displays help message, then exits]'
    '(--version)--version[Displays version, then exits]'
    '(--theme)--theme[Color themes]'
    '(--settings-menu)--settings-menu[Launch settings menu]'
    '*:filename:_files'
    )

_arguments -S -s $args

