We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdd037a commit 8eaebcaCopy full SHA for 8eaebca
z.lua.plugin.zsh
@@ -24,11 +24,11 @@ export _ZL_FZF_FLAG=${_ZL_FZF_FLAG:-"-e"}
24
25
eval "$($ZLUA_EXEC $ZLUA_SCRIPT --init zsh once enhanced)"
26
27
-
28
-alias zz='z -i'
29
-alias zc='z -c'
30
-alias zf='z -I'
31
-alias zb='z -b'
32
-alias zh='z -I -t .'
33
-alias zzc='zz -c'
34
+if [[ -z "$_ZL_NO_ALIASES" ]]; then
+ alias zz='z -i'
+ alias zc='z -c'
+ alias zf='z -I'
+ alias zb='z -b'
+ alias zh='z -I -t .'
+ alias zzc='zz -c'
+fi
0 commit comments