@@ -1634,7 +1634,7 @@ function z_cd(patterns)
1634
1634
elseif Z_INTERACTIVE == 2 then
1635
1635
local fzf = os .environ (' _ZL_FZF' , ' fzf' )
1636
1636
local tmpname = ' /tmp/zlua.txt'
1637
- local cmd = ' --nth 2.. --reverse --inline- info --tac '
1637
+ local cmd = ' --nth 2.. --reverse --info=inline --tac '
1638
1638
local flag = os .environ (' _ZL_FZF_FLAG' , ' ' )
1639
1639
flag = (flag == ' ' or flag == nil ) and ' +s -e' or flag
1640
1640
cmd = ((fzf == ' ' ) and ' fzf' or fzf ) .. ' ' .. cmd .. ' ' .. flag
@@ -1855,7 +1855,7 @@ function cd_breadcrumbs(pwd, interactive)
1855
1855
retval = io.read (' *l' )
1856
1856
elseif interactive == 2 then
1857
1857
local fzf = os .environ (' _ZL_FZF' , ' fzf' )
1858
- local cmd = ' --reverse --inline- info --tac '
1858
+ local cmd = ' --reverse --info=inline --tac '
1859
1859
local flag = os .environ (' _ZL_FZF_FLAG' , ' ' )
1860
1860
flag = (flag == ' ' or flag == nil ) and ' +s -e' or flag
1861
1861
cmd = ((fzf == ' ' ) and ' fzf' or fzf ) .. ' ' .. cmd .. ' ' .. flag
@@ -2287,7 +2287,7 @@ function z_shell_init(opts)
2287
2287
end
2288
2288
print (script_complete_bash )
2289
2289
if opts .fzf ~= nil then
2290
- fzf_cmd = " fzf --nth 2.. --reverse --inline- info --tac "
2290
+ fzf_cmd = " fzf --nth 2.. --reverse --info=inline --tac "
2291
2291
local height = os .environ (' _ZL_FZF_HEIGHT' , ' 35%' )
2292
2292
if height ~= nil and height ~= ' ' and height ~= ' 0' then
2293
2293
fzf_cmd = fzf_cmd .. ' --height ' .. height .. ' '
0 commit comments