Skip to content

Commit 5ea08c5

Browse files
author
skywind3000
committed
update doc
1 parent 9dd0fec commit 5ea08c5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,6 @@ As you see, z.lua is the fastest one and requires less resource.
458458

459459
## History
460460

461-
- 1.5.7 (2019-02-20): improve the result of `$_ZL_FZF_SORT`.
462461
- 1.5.6 (2019-02-20): set `$_ZL_FZF_SORT` to 1 to sort directories by alphabet in fzf.
463462
- 1.5.5 (2019-02-20): `$_ZL_FZF_FLAG` can be used to override fzf flags, default to "+s -e".
464463
- 1.5.4 (2019-02-19): fixed: file/path existence detection fails on read-only fs (closed [#49](https://github.com/skywind3000/z.lua/issues/49) by [@contrun](https://github.com/contrun)).

z.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- z.lua - a cd command that learns, by skywind 2018, 2019
55
-- Licensed under MIT license.
66
--
7-
-- Version 1.5.7, Last Modified: 2019/02/20 23:15
7+
-- Version 1.5.6, Last Modified: 2019/02/20 23:30
88
--
99
-- * 10x faster than fasd and autojump, 3x faster than z.sh
1010
-- * available for posix shells: bash, zsh, sh, ash, dash, busybox
@@ -2000,7 +2000,7 @@ function z_shell_init(opts)
20002000
end
20012001
print(script_complete_bash)
20022002
if opts.fzf ~= nil then
2003-
fzf_cmd = "fzf --nth 2 --reverse --inline-info --tac "
2003+
fzf_cmd = "fzf --nth 2.. --reverse --inline-info --tac "
20042004
if not os.environ('_ZL_FZF_FULLSCR', false) then
20052005
fzf_cmd = fzf_cmd .. ' --height 35%'
20062006
end

0 commit comments

Comments
 (0)