-
By default, I can use But now it doesn't. BTW: I used OMZ before. |
Beta Was this translation helpful? Give feedback.
Answered by
zhuzhzh
Mar 9, 2023
Replies: 2 comments
-
OMZ uses the code below to achieve this functionality. # Changing/making/removing directory
setopt auto_cd
setopt auto_pushd
setopt pushd_ignore_dups
setopt pushdminus
alias -g ...='../..'
alias -g ....='../../..'
alias -g .....='../../../..'
alias -g ......='../../../../..'
alias -- -='cd -'
alias 1='cd -1'
alias 2='cd -2'
alias 3='cd -3'
alias 4='cd -4'
alias 5='cd -5'
alias 6='cd -6'
alias 7='cd -7'
alias 8='cd -8'
alias 9='cd -9'
alias md='mkdir -p'
alias rd=rmdir
function d () {
if [[ -n $1 ]]; then
dirs "$@"
else
dirs -v | head -n 10
fi
}
compdef _dirs d |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
zhuzhzh
-
You can load the ohmyzsh script via zmodule by including
in your .zimrc file. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OMZ uses the code below to achieve this functionality.