From f823d50baf30bee34edc57f0993f70d48f4e949d Mon Sep 17 00:00:00 2001 From: Matt Hamilton Date: Tue, 15 Dec 2015 02:07:46 -0500 Subject: [PATCH] add directory documentation --- modules/directory/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 modules/directory/README.md diff --git a/modules/directory/README.md b/modules/directory/README.md new file mode 100644 index 0000000..d90a751 --- /dev/null +++ b/modules/directory/README.md @@ -0,0 +1,18 @@ +Directory +========= + +Sets directory, navigation, and redirect options. + +ZSH options +----------- + +| Option | Effect | +| ------ | ----------- | +| AUTO_CD | If the typed command is invalid, but is a directory, cd to that directory | +| AUTO_PUSHD | After cd, push the old directory to the directory stack | +| PUSHD_IGNORE_DUPS | Don't push multiple copies of the same directory to the stack | +| PUSHD_SILENT | Don't print the directory after pushd or popd | +| PUSHD_TO_HOME | pushd without arguments acts like 'pushd ${HOME}' | +| EXTENDED_GLOB | Treat '#', '~', and '^' as patterns for filename globbing | +| MULTIOS | Performs implicit tees or cats when using redirections | +| CLOBBER | Disables automatic truncation with '>' or '>\|'. Use '>>!' or '>>\|' instead |