Releases: skywind3000/z.lua
Releases · skywind3000/z.lua
20201224 - v1.8.10
- improve clink 1.11 completion and compatibility.
20201223 - v1.8.9
- clink: introduce environment variable
$_ZL_CLINK_PROMPT_PRIORITY
to control z.lua's register priority in clink. - powershell: support powershell on linux.
- fish: improve fisher compatibility in
init.fish
. - zsh: use
command -v
to reduce startup time inz.lua.plugin.zsh
. - cmd: expose
--add
in cmd on windows. - ranger: fixed
-I
problem inranger_zlua.py
.
20200629 - v1.8.7
- better path name handling with luajit.
- record correct character case in path name on windows (with luajit's ffi module).
- use
lfs
module for path detection if possible (work-around for #104 in WSL-1).
20200210 - v1.8.4
fish shell: set $_ZL_ECHO
to global scope.
20200210 - v1.8.3
20191229 - v1.7.4
New $_ZL_HYPHEN
option can used to tread hyphen (-) as a normal character, see here.
usage:
export _ZL_HYPHEN=1
then z.lua will stop parsing -
as a lua regexp reserved word. and match the directories like:
my-vue-work
exactly by "z my-vue-work" .
20190907 - v1.7.3
use lua-filesystem package (if possible) when $_ZL_USE_LFS
is 1
.
20190801 - v1.7.2
Improve bash/zsh compatibility by @barlik.
20190607 - v1.7.1
Fixed: $_ZL_DATA
may fail on Linux sometimes and closes: #68
20190309 - v1.7.0
Supports ranger now, see ranger integration.
Fixed: ReplaceFile failed if dst file absent in luajit (Windows), try rename first.