fix(termsupport): ensure non-error return code (#13217)
This commit is contained in:
parent
8425e9774e
commit
2ac69955e8
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ function omz_termsupport_precmd {
|
|||
|
||||
# Runs before executing the command
|
||||
function omz_termsupport_preexec {
|
||||
[[ "${DISABLE_AUTO_TITLE:-}" != true ]] || return
|
||||
[[ "${DISABLE_AUTO_TITLE:-}" != true ]] || return 0
|
||||
|
||||
emulate -L zsh
|
||||
setopt extended_glob
|
||||
|
|
|
|||
Loading…
Reference in a new issue