Skip to content

Releases: skywind3000/z.lua

20220131 - v1.8.14

30 Jan 17:49
Compare
Choose a tag to compare

recognize %_ZL_CD% in cmd.exe

20210505 - v1.8.13

05 May 08:42
a3d4f5d
Compare
Choose a tag to compare

20210215 - v1.8.12

14 Feb 16:10
Compare
Choose a tag to compare
  • 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

30 Dec 18:12
Compare
Choose a tag to compare
  • windows: fix pushd leaking in cmd.exe

20201224 - v1.8.10

24 Dec 07:30
Compare
Choose a tag to compare
  • improve clink 1.11 completion and compatibility.

20201223 - v1.8.9

23 Dec 08:45
Compare
Choose a tag to compare
  • 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 in z.lua.plugin.zsh.
  • cmd: expose --add in cmd on windows.
  • ranger: fixed -I problem in ranger_zlua.py .

20200629 - v1.8.7

29 Jun 14:33
Compare
Choose a tag to compare
  • 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

10 Feb 11:27
Compare
Choose a tag to compare

fish shell: set $_ZL_ECHO to global scope.

20200210 - v1.8.3

09 Feb 15:50
Compare
Choose a tag to compare

new: interactive mode in backward jumping: z -b -i and z -b -I:

z -b -i:

图片

z -b -I:

图片

20191229 - v1.7.4

28 Dec 21:01
Compare
Choose a tag to compare

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" .