# shellcheck shell=dash disable=1090,2034

alias theme:feature:get=___x_cmd_theme_feature_get_
xrc:mod:lib theme   \
    feature/_util   feature/_main   \
    features/exectime features/symbol features/transient features/zshplugin

# x theme feature try transient_enable always
# x theme feature try transient_time always
___x_cmd_theme_feature(){
    [ $# -gt 0 ] || set -- --help

    arg:init:x theme feature
    arg:help

    local op="$1";      shift
    case "$op" in
        use|try|cat|get_|get|reload)
            ___x_cmd_theme_feature_"$op" "$@"
            ;;
        *)
            N=theme M="Not support subcmd=$op" log:ret:64
            ;;
    esac
}

