From f911124e1032c16e0d26613f3338a501acf5d464 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 12 May 2018 18:31:24 +0100 Subject: [PATCH] dot/zshrc: Don't have `typeset -x' implicitly make variables global. Organization: Straylight/Edgeware From: Mark Wooding This is compatibility cruft which isn't consistent with the way the rest of the shell works. --- dot/zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/dot/zshrc b/dot/zshrc index a42e482..f6b205a 100644 --- a/dot/zshrc +++ b/dot/zshrc @@ -137,6 +137,7 @@ unsetopt bash_auto_list unsetopt beep setopt extendedglob unsetopt flow_control +unsetopt global_export setopt glob_star_short setopt hist_ignore_all_dups setopt hist_ignore_space -- [mdw]