2015-12-15 02:07:46 -05:00
|
|
|
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 |
|
2016-12-24 12:35:55 -05:00
|
|
|
| PUSHD_TO_HOME | pushd without arguments acts like `pushd ${HOME}` |
|
|
|
|
| EXTENDED_GLOB | Treat `#`, `~`, and `^` as patterns for filename globbing |
|
2015-12-15 02:07:46 -05:00
|
|
|
| MULTIOS | Performs implicit tees or cats when using redirections |
|
2016-12-24 12:35:55 -05:00
|
|
|
| NO_CLOBBER | Disables overwrite existing files with `>`. Use `>|` or `>!` instead |
|