1
0
mirror of https://github.com/skywind3000/z.lua synced 2026-03-15 04:09:49 +00:00

update omf entry

This commit is contained in:
skywind3000
2019-02-08 23:55:48 +08:00
parent b221c6ff52
commit afbb84fd42

View File

@@ -5,7 +5,7 @@ if test -z "$XDG_DATA_HOME"
else
set -U _ZL_DATA_DIR "$XDG_DATA_HOME/zlua"
end
set -U _ZL_DATA "$_ZL_DATA_DIR/zlua.txt"
set -U _ZL_DATA "$_ZL_DATA_DIR/zlua.txt" 2> /dev/null
if test ! -e "$_ZL_DATA"
if test ! -e "$_ZL_DATA_DIR"
@@ -33,8 +33,8 @@ if test -e $_zlua_dir/z.lua
alias zz='z -i' # cd with interactive selection
alias zf='z -I' # use fzf to select in multiple matches
alias zb='z -b' # quickly cd to the parent directory
set -U ZLUA_SCRIPT "$ZLUA_SCRIPT"
set -U ZLUA_LUAEXE "$ZLUA_LUAEXE"
set -U ZLUA_SCRIPT "$ZLUA_SCRIPT" 2> /dev/null
set -U ZLUA_LUAEXE "$ZLUA_LUAEXE" 2> /dev/null
end