diff --git a/plugins/available/superstack.plugin.bash b/plugins/available/superstack.plugin.bash new file mode 100644 index 00000000..4a58bb10 --- /dev/null +++ b/plugins/available/superstack.plugin.bash @@ -0,0 +1,11 @@ +# cd becomes pushd +# +# Add to stack with: cd /path/to/directory +# Delete current dir from stack with: popd +# Show stack with: dirs + +cite about-plugin +about-plugin 'always use pushd - cd becomes pushd' + +alias cd='pushd' +alias dirs='dirs -v'