Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[3.0-pre3] job completion notification bug?



I just noticed that my zsh-3.0-pre3 no longer notifies me when a job
started in the foreground and later bg'd completes:

  $ sleep 5
  ^Z
  zsh: 22727 suspended  sleep 5
  $ bg
  [1]  + continued  sleep 5
  $ jobs
  $

But it must be some option interaction, as it works as advertised when
invoked with `-f':

  $ ~/bin/sunos-5.5/zsh-3.0-pre3 -f
  % setopt
  bgnice
  hashcmds
  hashdirs
  hashlistall
  interactive
  monitor
  norcs
  notify
  shinstdin
  zle
  % sleep 5
  ^Z
  zsh: suspended  sleep 5
  % bg
  [1]  + continued  sleep 5
  %
  [1]  + done       sleep 5
  %

Before I waste a day toggling various option combinations to find the
culprit, does anyone know offhand what could be the problem? Here are
my normal options:

  $ setopt
  appendhistory
  autocd
  autolist
  automenu
  autoparamslash
  autopushd
  cdablevars
  completeinword
  correct
  correctall
  extendedglob
  extendedhistory
  globdots
  hashcmds
  hashdirs
  hashlistall
  histallowclobber
  histignoredups
  interactive
  listambiguous
  login
  longlistjobs
  monitor
  noclobber
  noflowcontrol
  nonomatch
  notify
  numericglobsort
  pushdignoredups
  pushdminus
  pushdsilent
  pushdtohome
  rcquotes
  shinstdin
  sunkeyboardhack
  zle
  $

-- 
  -mb-




Messages sorted by: Reverse Date, Date, Thread, Author