From: Frank Terbeck Date: Wed, 30 Nov 2011 21:14:04 +0000 (+0100) Subject: zshrc: Don't unset `nomatch' anymore X-Git-Tag: v0.5.0~8 X-Git-Url: http://git.grml.org/?p=grml-etc-core.git;a=commitdiff_plain;h=b4c73df2ca5d960293f8c9e5c47d5f39e7b4c62c zshrc: Don't unset `nomatch' anymore Signed-off-by: Frank Terbeck --- diff --git a/doc/grmlzshrc.t2t b/doc/grmlzshrc.t2t index d161725..c43dc23 100644 --- a/doc/grmlzshrc.t2t +++ b/doc/grmlzshrc.t2t @@ -382,11 +382,6 @@ A wildcard character never matches a leading '.'. : **nohup** Do not send the hangup signal (HUP:1) to running jobs when the shell exits. -: **nonomatch** -If a pattern for filename generation has no matches, do not print an error -and leave it unchanged in the argument list. This also applies to file -expansion of an initial `~' or `='. - : **notify** Report the status of background jobs immediately, rather than waiting until just before printing a prompt. diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index e69100c..b43a99d 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -272,7 +272,6 @@ setopt hash_list_all # Whenever a command completion is attempted, make s setopt completeinword # not just at the end setopt nohup # and don't kill them, either setopt auto_pushd # make cd push the old directory onto the directory stack. -setopt nonomatch # try to avoid the 'zsh: no matches found...' setopt nobeep # avoid "beep"ing setopt pushd_ignore_dups # don't push the same dir twice. setopt noglobdots # * shouldn't match dotfiles. ever.