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.
2 parents 836efd3 + 3b8b4c1 commit 4900651Copy full SHA for 4900651
z.lua.plugin.zsh
@@ -20,15 +20,15 @@ if [[ -z "$ZLUA_EXEC" ]]; then
20
fi
21
22
23
-export _ZL_FZF_FLAG="-e"
+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