Marty Oehme
949e071b97
Fixed the quick-style .. to go up a directory. Use `cd ..` to enable the fzf enabled selection if you quickly need to go up multiple directories instead.
4 lines
252 B
Bash
4 lines
252 B
Bash
# Assumes enhancd is installed (via plugin)
|
|
# Let's you go back a directory with .. (usual cd .. behavior)
|
|
# Let's the enhancd backtrack menu appear with cd .. (usual enhancd behavior)
|
|
alias ..="ENHANCD_DISABLE_DOT=1 && cd .. && ENHANCD_DISABLE_DOT=0"
|