Skip to content

Releases: skywind3000/z.lua

20190304 - v1.5.12

04 Mar 13:26
Compare
Choose a tag to compare

optimize with ffi (luajit module)

20190302 - v1.5.11

02 Mar 04:17
Compare
Choose a tag to compare

fixed: os.path.isdir doesn't work for symbol link directories.

20190301 - v1.5.10

01 Mar 06:45
Compare
Choose a tag to compare

Prevent writing file racing.

20190225 - v1.5.9

25 Feb 15:21
Compare
Choose a tag to compare

'z -b' should not match current directory

20190221 - v1.5.8

21 Feb 04:14
Compare
Choose a tag to compare

New option $_ZL_FZF_HEIGHT to control --height parameter in fzf:

# fzf: full screen
export _ZL_FZF_HEIGHT=0

# fzf: 30 lines
export _ZL_FZF_HEIGHT=30

# fzf: 35% of screen height
export _ZL_FZF_HEIGHT="35%"

20190221 - v1.5.7

21 Feb 03:17
Compare
Choose a tag to compare

rename $_ZL_FZF_SORT to $_ZL_INT_SORT. it will affect both -i and -I.

20190220 - v1.5.6

20 Feb 15:32
Compare
Choose a tag to compare

New: set $_ZL_FZF_SORT to 1 to sort the directories by alphabet in fzf.
Update: better handle fzf parameters in bash completion.

20190220 - v1.5.5

20 Feb 04:27
Compare
Choose a tag to compare

System environment variable $_ZL_FZF_FLAG (default to "+s -e") can be used to override fzf parameter.
eg: enable fzf sorting by remove the "+s" option:

export _ZL_FZF_FLAG="-e"

20190218 - v1.5.4

19 Feb 03:50
Compare
Choose a tag to compare
  1. fixed false detection of os.path.exists on read-only fs.
  2. better compatible with fz.sh.

20190217 - v1.5.3

17 Feb 09:55
Compare
Choose a tag to compare
  • fixed: system environment variable parsing is flaky.
  • new: _ZL_FZF_FLAG for passing additional arguments to fzf.
  • change: add a -e argument to fzf in interactive selection mode for better matching.