Thiago Padilha

Results 111 comments of Thiago Padilha

> Some concept of configuration file, that lists which Go-based plugins are active That will be done by a "manifest" that is required for every plugin that implemented in an...

I've been searching for a pattern of dynamically loading go code and found this [SO answer](http://stackoverflow.com/a/18238990). While I will do my best add explicit support host reloading(which is required for...

Maybe you can build something on top of [neovim_gdb.vim](https://github.com/neovim/neovim/blob/master/contrib/neovim_gdb/neovim_gdb.vim)

If you communicate with Neovim using stdio(--embed cli flag), Neovim will exit when the parent dies. For other types of connection, this could be fixed if Neovim had a `ChannelClosed`...

> I recall you were writing a version of that in C, correct? I had plans to do it, but didn't start anything yet.

@oakes I'm currently refactoring the event/UI subsystems to allow this(neovim/neovim#2371). The terminal UI is called directly because it runs in the same thread, but soon I will make some changes...

> Great, I was wondering if my idea might have threading problems so I'll follow that issue. I have temporarily stopped rebasing my fork on the latest Neovim commits, however,...

Yes, but ideally we'd have a function that allows the library user to override the allocation functions used by nvim

Yes I've seen that gist, the pane navigation is similar to my own version. The gist I posted has other features though, in particular you should see the vim-tmux-open.zsh file,...

At least for the "chat" function, this already works. I've tested the plugin with OpenChat 3.5 running with llama-cpp-python, which has an OpenAI compatible web server. Here's my config: ```lua...