Oliver Caldwell
Oliver Caldwell
So I don't think Conjure is providing _any_ completions for Janet whatsoever, it's just not implemented in the client. Which means that it's falling through to syntaxcomplete which means you're...
Huh, interestingly we're passing the right text into the completion fn, it just returns ALL results ```fennel (a.println "===" prefix (a.count (-?> (config.get-in [:completion :fallback]) (nvim.call_function [0 prefix])))) ;; =>...
Looking through this omnifunc we're trying to use, it's actually quite stateful between calls (I think?) https://github.com/vim-scripts/SyntaxComplete/blob/master/plugin/syntaxcomplete.vim It has a bunch of script local (`s:...`) variables that it seems to...
Looking into this now, I suspect it's due to a change in Hy but I'm not sure what yet. I'm reading through the changelog and seeing if I can get...
https://github.com/hylang/hy/issues/2546 I think the existing code used the `ps2` override feature, so that might be part of it.
I think I fixed it on the `develop` branch? It's to do with recent changes to Hy and maaaaybe it's a Hy bug? I think the two required things are...
Hey! So I think the older Rust REPL support had a bunch of issues that evcxr solved 🤔 I can't find discussions about it in Conjure's history but there's this...
Oh interesting! So maybe if I just change the order of the buftype setting it'd help some people out. I kind of like the LSP / linting in the log...
I've pushed a change to develop that turns off diagnostics in the log by default. There is a config option to turn them back on. This way we only remove...
Also added a flag for treesitter although this one is NOT off by default because I think it's mostly useful and people will want it on. It's worth turning off...