Moelf / JLFzf.jl

Julia bind to fzf fuzzy finder
MIT License
16 stars 5 forks source link

The example doesn't work as it should #13

Closed VarLad closed 3 years ago

VarLad commented 3 years ago
julia> using JLFzf

julia> a = JLFzf.inter_fzf(["a", "b", "c"])
"a\0b\0c"

julia> @show a
a = "a\0b\0c"
"a\0b\0c"

julia> 
VarLad commented 3 years ago

@Moelf I believe 1.6 broke it?

Moelf commented 3 years ago

no I think it's just one needs to passread0 flag to the fzf binary and the example isn't up to date

a = JLFzf.inter_fzf(["a", "b", "c"], "--read0")