Hey, I am trying to setup next config prop let g:conjure#log#wrap=1
but I am getting Option 'wrap' requires a Boolean value
I've fixed this on develop so it'll accept 1/0 now 🙂
great! thanks for quick help!
what is the proper way to set this?
Hmm odd, that should do it, although I'd do let g:conjure#log#wrap = v:true
which I think is totally equivalent.
Maybe there's an issue with the option but I thought this was working fine for others :thinking_face:
Maybe it should be something like
(when (config.get-in [:log :wrap])
(nvim.win_set_option state.hud.id :wrap))
one more question, when I try to build conjure locally
rm -rf lua
deps/aniseed/scripts/compile.sh
deps/aniseed/scripts/embed.sh aniseed conjure
deps/aniseed/scripts/embed.sh: line 14: rsync: command not found
find: 'lua/conjure/aniseed': No such file or directory
make: *** [Makefile:22: compile] Error 1
what am I missing?
let g:conjure#log#wrap = v:true works fine!
but this is not let g:conjure#log#wrap = 1
Hmm I'll try to tweak it so 1 works, but I always use v:true and v:false for clarity personally. Also the build requires rsync for copying files around. I did have a method that didn't require rsync but it broke on OSX sadly, the cp isn't implemented in the same was as every Linux distro. So rsync is far more portable if you have it installed.