Created
October 9, 2014 19:40
-
-
Save 8573/d8d0e4a0ed0a0e38f0d5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% emulate -R zsh | |
% setopt | grep -Ei 'autocd|errexit|unset' | |
% setopt autocd | |
% setopt | grep -Ei 'autocd|errexit|unset' | |
autocd | |
% function f { emulate -L zsh } | |
% setopt | grep -Ei 'autocd|errexit|unset' | |
autocd | |
% f | |
% setopt | grep -Ei 'autocd|errexit|unset' | |
autocd | |
% function g { emulate -L zsh -eu } | |
% setopt | grep -Ei 'autocd|errexit|unset' | |
autocd | |
% g | |
% setopt | grep -Ei 'autocd|errexit|unset' | |
errexit | |
nounset |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment