Releases: skywind3000/z.lua
Releases · skywind3000/z.lua
20220131 - v1.8.14
recognize %_ZL_CD%
in cmd.exe
20210505 - v1.8.13
- merge: a3d4f5d
20210215 - v1.8.12
-
Improve PowerShell-7 compatibility, init z.lua like this in PowerShell-7:
Invoke-Expression (& { (lua /path/to/z.lua --init powershell) -join "`n" })
-
Update docs about powershell and wsl-1.
-
Close #115 .
20201231 - v1.8.11
- windows: fix pushd leaking in cmd.exe
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" .