!!! This Gist tutorial is deprecated. Its new version is available here !!!
This is some red text.
- Author: Thomas Girke
- Last update: 18-Nov-2020
| {{FrontSide}} | |
| <div class="outside"> Answer</div> | |
| <div class="card-back shadow"> | |
| <div class="back">{{Back}}</div> | |
| {{#BackOpt}} | |
| <hr /> | |
| <div class="backopt">{{BackOpt}}</div> |
| ## ZSH Options | |
| # http://zsh.sourceforge.net/Doc/Release/Options.html | |
| # Changing Directories | |
| # http://zsh.sourceforge.net/Doc/Release/Options.html#Changing-Directories | |
| setopt auto_cd # if a command isn't valid, but is a directory, cd to that dir | |
| setopt auto_pushd # make cd push the old directory onto the directory stack | |
| setopt pushd_ignore_dups # don’t push multiple copies of the same directory onto the directory stack | |
| setopt pushd_minus # exchanges the meanings of ‘+’ and ‘-’ when specifying a directory in the stack |
This is some red text.