aboutsummaryrefslogtreecommitdiff
path: root/config/all/zsh/99-function-overrides.zsh
blob: 8b233e53339d318430901aa8cba1c864f898b507 (plain)
1
2
3
4
5
6
7
8
preexec () {
    type term_preexec &> /dev/null && term_preexec $*
    type theme_preexec &> /dev/null && theme_preexec $*
}

precmd () {
    type term_precmd &> /dev/null && term_precmd
}