Skip to content

Releases: skywind3000/z.lua

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

20190907 - v1.7.3

06 Sep 17:05
Compare
Choose a tag to compare

use lua-filesystem package (if possible) when $_ZL_USE_LFS is 1.

20190801 - v1.7.2

01 Aug 11:57
Compare
Choose a tag to compare

Improve bash/zsh compatibility by @barlik.

20190607 - v1.7.1

07 Jun 14:19
Compare
Choose a tag to compare

Fixed: $_ZL_DATA may fail on Linux sometimes and closes: #68

20190309 - v1.7.0

09 Mar 09:11
Compare
Choose a tag to compare

Supports ranger now, see ranger integration.
Fixed: ReplaceFile failed if dst file absent in luajit (Windows), try rename first.