summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/add_to_list
blob: 801e66272fa80da81d30a49b9dd9aa1f52707576 (plain)
1
2
3
4
# -*- mode: sh; -*-
if [[ "${(P)${1}}" =~ (^|:)"$2"(:|$) ]]; then; else
    typeset -g $1="${(P)${1}}:$2"
fi