1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-07-02 14:19:26 +00:00

Add zstyle to skip aliases for additional modules

This commit is contained in:
mattmc3
2023-04-12 22:02:41 -04:00
committed by Kaleb Elwert
parent fc444f57e1
commit da87c79b3a
13 changed files with 145 additions and 119 deletions

View File

@ -53,5 +53,7 @@ function fasd_cd {
# Aliases
#
# Changes the current working directory interactively.
alias j='fasd_cd -i'
if ! zstyle -t ':prezto:module:fasd:alias' skip; then
# Changes the current working directory interactively.
alias j='fasd_cd -i'
fi