From 81ad26322f7f06c7d15d14ee381cf5da814b4a8f Mon Sep 17 00:00:00 2001 From: staticsafe Date: Thu, 16 Aug 2012 21:18:26 -0400 Subject: [PATCH] add some additional setopts --- .zsh/setopt.zsh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.zsh/setopt.zsh b/.zsh/setopt.zsh index 1eb491d..ee5fc3b 100644 --- a/.zsh/setopt.zsh +++ b/.zsh/setopt.zsh @@ -12,6 +12,14 @@ setopt EXTENDED_HISTORY setopt EXTENDED_GLOB setopt AUTO_CD +# display PID when suspending processes as well +setopt longlistjobs +# try to avoid the 'zsh: no matches found...' +setopt nonomatch # Turn off flow control setopt noflowcontrol - +# report the status of backgrounds jobs immediately +setopt notify +# whenever a command completion is attempted, make sure the entire command path +# is hashed first. +setopt hash_list_all