1
0

zopt.zsh 279 B

12345678910111213
  1. # ignore sequential duplicates
  2. setopt hist_ignore_dups
  3. # shared history across shells
  4. setopt INC_APPEND_HISTORY
  5. # list choices on ambiguous completion
  6. # use BASH_AUTO_LIST to require a second keypress
  7. setopt AUTO_LIST
  8. # don't list on unambiguous prefix
  9. setopt LIST_AMBIGUOUS