zimfw/modules/directory
Eric Nielsen 5b90c96cd1 Update modules' README.md
Stick with the following style:

* Header 1 with the module name is in `lowercase`.
* Other headers are in `Sentence case`. Common header names that should
  be consistently used are `Aliases`, `Contributing`, `Functions`,
  `Settings`, and `Zsh options`.
* The names `Zim` and `Zsh` always appear capitalized, even in the
  middle of sentences.
* Prefer

      print 'code indented with 4 spaces'

  instead of
  ```zsh
  print 'code fenced by lines with three back-ticks'
  print 'unless you want syntax highlighting'
  ```
2018-12-17 14:11:16 -05:00
..
README.md Update modules' README.md 2018-12-17 14:11:16 -05:00
init.zsh use setopt NO_CLOBBER instead of unsetopt CLOBBER 2017-01-11 22:16:07 -08:00

README.md

directory

Sets directory, navigation, and redirect options.

Zsh options

  • AUTO_CD performs cd to a directory if the typed command is invalid, but is a directory.
  • AUTO_PUSHD makes cd push the old directory to the directory stack.
  • PUSHD_IGNORE_DUPS does not push multiple copies of the same directory to the stack.
  • PUSHD_SILENT does not print the directory stack after pushd or popd.
  • PUSHD_TO_HOME has pushd without arguments act like pushd ${HOME}.
  • EXTENDED_GLOB treats #, ~, and ^ as patterns for filename globbing.
  • MULTIOS performs implicit tees or cats when using multiple redirections.
  • NO_CLOBBER disallows > to overwrite existing files. Use >| or >! instead.