[directory] Update README.md

Replace table by bulleted list so we can use `|` in the text without
breaking the Markdown rendering (as it did for the table).

Closes #272
This commit is contained in:
Eric Nielsen 2018-05-16 14:21:37 -05:00
parent b7cb8d81c0
commit e38b44cd7f
1 changed files with 10 additions and 12 deletions

View File

@ -1,18 +1,16 @@
Directory directory
========= =========
Sets directory, navigation, and redirect options. Sets directory, navigation, and redirect options.
ZSH options zsh options
----------- -----------
| Option | Effect | * `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.
| AUTO_CD | If the typed command is invalid, but is a directory, cd to that directory | * `PUSHD_IGNORE_DUPS` does not push multiple copies of the same directory to the stack.
| AUTO_PUSHD | After cd, push the old directory to the directory stack | * `PUSHD_SILENT` does not print the directory stack after pushd or popd.
| PUSHD_IGNORE_DUPS | Don't push multiple copies of the same directory to the stack | * `PUSHD_TO_HOME` has pushd without arguments act like `pushd ${HOME}`.
| PUSHD_SILENT | Don't print the directory after pushd or popd | * `EXTENDED_GLOB` treats `#`, `~`, and `^` as patterns for filename globbing.
| PUSHD_TO_HOME | pushd without arguments acts like `pushd ${HOME}` | * `MULTIOS` performs implicit tees or cats when using multiple redirections.
| EXTENDED_GLOB | Treat `#`, `~`, and `^` as patterns for filename globbing | * `NO_CLOBBER` disallows `>` to overwrite existing files. Use `>|` or `>!` instead.
| MULTIOS | Performs implicit tees or cats when using redirections |
| NO_CLOBBER | Disables overwrite existing files with `>`. Use `>|` or `>!` instead |