bfredl

Results 459 comments of bfredl

What's the complexity of shipping luarocks? IIUC these four bindeps needs to be provided https://github.com/luarocks/luarocks/tree/master/binary, otherwise luarocks is "just" lua files to bundle.

The might be some misunderstanding here. Tree-sitter in neovim doesn't use an external process like coc.nvim. The parser runtime is a C library embedded into the editor itself (in total...

@bfrg `src/evalfunc.c` from vim (10 000 lines) takes 80 ms more time with tree-sitter enabled for the initial parse (`--startuptime` 200ms compared to 120ms in my config)

I prefer `require'foo.bar'(baz)` (without unnecessary space), this visually focuses on the relevant function call.

BTW R version is 3.4.2. This kernel should be latest master commit.

@tknopp Did the structure of `Gtk.jl` change? I think it wants to import `Gtk.GLib` as `GLib`.

Yeah sorry for my inactivity, I'm being stuck with python/tensorflow codebase for my current research projects. But I hope to get back into julia-land soon and consider using Flux.jl for...

Still, I'm pretty sure `Symbol("Gtk.GLib")` is wrong. `:(using Gtk.Glib)).args` gives `Expr(:., :Gtk, :Glib)`

But it should be `Expr(:using, Expr(:., :Gtk, :GLib))` based on what I just said.

Not sure, I think I'm relying on `Gtk.GLib` to actually generate the wrapper types. But maybe GI.jl is feeding it bad data.