fix(termsupport): ensure non-error return code (#13217)

master
Kevin De Keyser 8 months ago committed by GitHub
parent 8425e9774e
commit 2ac69955e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      lib/termsupport.zsh

@ -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…
Cancel
Save