zshrc: Don't unset `nomatch' anymore
authorFrank Terbeck <ft@bewatermyfriend.org>
Wed, 30 Nov 2011 21:14:04 +0000 (22:14 +0100)
committerMichael Prokop <mika@grml.org>
Tue, 6 Dec 2011 13:50:49 +0000 (14:50 +0100)
Signed-off-by: Frank Terbeck <ft@bewatermyfriend.org>
doc/grmlzshrc.t2t
etc/zsh/zshrc

index d161725..c43dc23 100644 (file)
@@ -382,11 +382,6 @@ A wildcard character never matches a leading '.'.
 : **nohup** <grml>
 Do not send the hangup signal (HUP:1) to running jobs when the shell exits.
 
-: **nonomatch** <grml>
-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.
index e69100c..b43a99d 100644 (file)
@@ -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.